Home
last modified time | relevance | path

Searched refs:item_type (Results 1 – 19 of 19) sorted by relevance

/linux/fs/xfs/
H A Dxfs_refcount_item.c147 unsigned short item_type, in xfs_cui_init() argument
153 ASSERT(item_type == XFS_LI_CUI || item_type == XFS_LI_CUI_RT); in xfs_cui_init()
162 xfs_log_item_init(mp, &cuip->cui_item, item_type, &xfs_cui_item_ops); in xfs_cui_init()
312 unsigned short item_type) in __xfs_refcount_update_create_intent() argument
320 cuip = xfs_cui_init(mp, item_type, count); in __xfs_refcount_update_create_intent()
743 .item_type = XFS_LI_CUI,
798 .item_type = XFS_LI_CUI_RT,
830 .item_type = XFS_LI_CUD,
860 .item_type = XFS_LI_CUD_RT,
H A Dxfs_rmap_item.c147 unsigned short item_type, in xfs_rui_init() argument
154 ASSERT(item_type == XFS_LI_RUI || item_type == XFS_LI_RUI_RT); in xfs_rui_init()
163 xfs_log_item_init(mp, &ruip->rui_item, item_type, &xfs_rui_item_ops); in xfs_rui_init()
337 unsigned short item_type) in __xfs_rmap_update_create_intent() argument
345 ruip = xfs_rui_init(mp, item_type, count); in __xfs_rmap_update_create_intent()
772 .item_type = XFS_LI_RUI,
827 .item_type = XFS_LI_RUI_RT,
859 .item_type = XFS_LI_RUD,
889 .item_type = XFS_LI_RUD_RT,
H A Dxfs_extfree_item.c151 unsigned short item_type, in xfs_efi_init() argument
156 ASSERT(item_type == XFS_LI_EFI || item_type == XFS_LI_EFI_RT); in xfs_efi_init()
167 xfs_log_item_init(mp, &efip->efi_item, item_type, &xfs_efi_item_ops); in xfs_efi_init()
421 unsigned short item_type) in __xfs_extent_free_create_intent() argument
429 efip = xfs_efi_init(mp, item_type, count); in __xfs_extent_free_create_intent()
891 .item_type = XFS_LI_EFI,
943 .item_type = XFS_LI_EFI_RT,
986 .item_type = XFS_LI_EFD,
1027 .item_type = XFS_LI_EFD_RT,
H A Dxfs_dquot_item_recover.c180 .item_type = XFS_LI_DQUOT,
213 .item_type = XFS_LI_QUOTAOFF,
H A Dxfs_exchmaps_item.c578 .item_type = XFS_LI_XMI,
609 .item_type = XFS_LI_XMD,
H A Dxfs_icreate_item.c257 .item_type = XFS_LI_ICREATE,
H A Dxfs_bmap_item.c686 .item_type = XFS_LI_BUI,
718 .item_type = XFS_LI_BUD,
H A Dxfs_attr_item.c1191 .item_type = XFS_LI_ATTRI,
1205 .item_type = XFS_LI_ATTRD,
H A Dxfs_inode_item_recover.c601 .item_type = XFS_LI_INODE,
H A Dxfs_buf_item_recover.c1155 .item_type = XFS_LI_BUF,
H A Dxfs_log_recover.c1836 if (ITEM_TYPE(item) == xlog_recover_item_ops[i]->item_type) in xlog_find_item_ops()
/linux/rust/kernel/
H A Dconfigfs.rs149 item_type: &'static ItemType<Subsystem<Data>, Data>, in new()
160 item_type.as_ptr(), in new()
259 item_type: &'static ItemType<Group<Data>, Data>, in new()
268 bindings::config_group_init_type_name(place, name.cast(), item_type.as_ptr()) in new()
732 item_type: Opaque<bindings::config_item_type>, field
755 item_type: Opaque::new(bindings::config_item_type {
772 item_type: Opaque::new(bindings::config_item_type {
791 self.item_type.get() in as_ptr()
/linux/rust/kernel/list/
H A Dimpl_list_item_mod.rs79 HasSelfPtr<$item_type:ty $(, $id:tt)?>
85 unsafe impl$(<$($generics)*>)? $crate::list::HasSelfPtr<$item_type $(, $id)?> for $self {}
91 let ptr: *mut $crate::list::ListLinksSelfPtr<$item_type $(, $id)?> =
/linux/drivers/block/rnull/
H A Dconfigfs.rs17 let item_type = configfs_attrs! { in subsystem() localVariable
26 kernel::configfs::Subsystem::new(c"rnull", item_type, try_pin_init!(Config {})) in subsystem()
51 let item_type = configfs_attrs! { in make_group() localVariable
66 item_type, in make_group()
/linux/sound/isa/sb/
H A Dsb16_csp.c301 __le32 item_type; in snd_sb_csp_riff_load() local
320 if (copy_from_user(&item_type, data_ptr, sizeof(item_type))) in snd_sb_csp_riff_load()
322 if (le32_to_cpu(item_type) != CSP__HEADER) { in snd_sb_csp_riff_load()
326 data_ptr += sizeof (item_type); in snd_sb_csp_riff_load()
335 if (copy_from_user(&item_type, data_ptr, sizeof(item_type))) in snd_sb_csp_riff_load()
337 switch (le32_to_cpu(item_type)) { in snd_sb_csp_riff_load()
339 if (copy_from_user(&funcdesc_h, data_ptr + sizeof(item_type), sizeof(funcdesc_h))) in snd_sb_csp_riff_load()
346 data_ptr += sizeof(item_type); in snd_sb_csp_riff_load()
/linux/samples/rust/
H A Drust_configfs.rs51 let item_type = configfs_attrs! { in init() localVariable
63 c"rust_configfs", item_type, Configuration::new() in init()
/linux/fs/xfs/libxfs/
H A Dxfs_log_recover.h25 uint16_t item_type; /* XFS_LI_* type code. */ member
/linux/include/linux/
H A Dconfigfs.h252 const struct config_item_type *item_type);
/linux/fs/configfs/
H A Ddir.c1845 const struct config_item_type *item_type) in configfs_register_default_group() argument
1853 config_group_init_type_name(group, name, item_type); in configfs_register_default_group()