Home
last modified time | relevance | path

Searched refs:entry2 (Results 1 – 9 of 9) sorted by relevance

/Linux-v4.19/fs/ext2/
Dxattr.c862 struct ext2_xattr_entry *entry1, *entry2; in ext2_xattr_cmp() local
865 entry2 = ENTRY(header2+1); in ext2_xattr_cmp()
867 if (IS_LAST_ENTRY(entry2)) in ext2_xattr_cmp()
869 if (entry1->e_hash != entry2->e_hash || in ext2_xattr_cmp()
870 entry1->e_name_index != entry2->e_name_index || in ext2_xattr_cmp()
871 entry1->e_name_len != entry2->e_name_len || in ext2_xattr_cmp()
872 entry1->e_value_size != entry2->e_value_size || in ext2_xattr_cmp()
873 memcmp(entry1->e_name, entry2->e_name, entry1->e_name_len)) in ext2_xattr_cmp()
875 if (entry1->e_value_block != 0 || entry2->e_value_block != 0) in ext2_xattr_cmp()
878 (char *)header2 + le16_to_cpu(entry2->e_value_offs), in ext2_xattr_cmp()
[all …]
/Linux-v4.19/fs/ext4/
Dblock_validity.c45 struct ext4_system_zone *entry2) in can_merge() argument
47 if ((entry1->start_blk + entry1->count) == entry2->start_blk) in can_merge()
Dxattr.c2998 struct ext4_xattr_entry *entry1, *entry2; in ext4_xattr_cmp() local
3001 entry2 = ENTRY(header2+1); in ext4_xattr_cmp()
3003 if (IS_LAST_ENTRY(entry2)) in ext4_xattr_cmp()
3005 if (entry1->e_hash != entry2->e_hash || in ext4_xattr_cmp()
3006 entry1->e_name_index != entry2->e_name_index || in ext4_xattr_cmp()
3007 entry1->e_name_len != entry2->e_name_len || in ext4_xattr_cmp()
3008 entry1->e_value_size != entry2->e_value_size || in ext4_xattr_cmp()
3009 entry1->e_value_inum != entry2->e_value_inum || in ext4_xattr_cmp()
3010 memcmp(entry1->e_name, entry2->e_name, entry1->e_name_len)) in ext4_xattr_cmp()
3014 (char *)header2 + le16_to_cpu(entry2->e_value_offs), in ext4_xattr_cmp()
[all …]
/Linux-v4.19/fs/
Ddax.c944 void *entry2, **slot; in dax_writeback_one() local
957 entry2 = get_unlocked_mapping_entry(mapping, index, &slot); in dax_writeback_one()
959 if (!entry2 || WARN_ON_ONCE(!radix_tree_exceptional_entry(entry2))) in dax_writeback_one()
966 if (dax_radix_pfn(entry2) != dax_radix_pfn(entry)) in dax_writeback_one()
1015 put_unlocked_mapping_entry(mapping, index, entry2); in dax_writeback_one()
/Linux-v4.19/drivers/acpi/
Dpci_root.c684 struct resource_entry *tmp, *entry, *entry2; in acpi_pci_root_validate_resources() local
712 resource_list_for_each_entry(entry2, resources) { in acpi_pci_root_validate_resources()
713 res2 = entry2->res; in acpi_pci_root_validate_resources()
/Linux-v4.19/Documentation/locking/
Dww-mutex-design.txt187 struct obj_entry *entry, *entry2;
194 entry2 = entry;
196 list_for_each_entry_continue_reverse (entry2, list, head)
197 ww_mutex_unlock(&entry2->obj->lock);
/Linux-v4.19/fs/xfs/libxfs/
Dxfs_attr_leaf.c2771 struct xfs_attr_leaf_entry *entry2; in xfs_attr3_leaf_flipflags() local
2809 entry2 = &xfs_attr3_leaf_entryp(leaf2)[args->index2]; in xfs_attr3_leaf_flipflags()
2829 if (entry2->flags & XFS_ATTR_LOCAL) { in xfs_attr3_leaf_flipflags()
2838 ASSERT(be32_to_cpu(entry1->hashval) == be32_to_cpu(entry2->hashval)); in xfs_attr3_leaf_flipflags()
2844 ASSERT((entry2->flags & XFS_ATTR_INCOMPLETE) == 0); in xfs_attr3_leaf_flipflags()
2858 entry2->flags |= XFS_ATTR_INCOMPLETE; in xfs_attr3_leaf_flipflags()
2860 XFS_DA_LOGRANGE(leaf2, entry2, sizeof(*entry2))); in xfs_attr3_leaf_flipflags()
2861 if ((entry2->flags & XFS_ATTR_LOCAL) == 0) { in xfs_attr3_leaf_flipflags()
/Linux-v4.19/drivers/char/ipmi/
Dipmi_devintf.c897 struct ipmi_reg_list *entry, *entry2; in cleanup_ipmi() local
899 list_for_each_entry_safe(entry, entry2, &reg_list, link) { in cleanup_ipmi()
/Linux-v4.19/fs/ocfs2/
Ddir.c3512 const struct ocfs2_dx_entry *entry2 = b; in dx_leaf_sort_cmp() local
3514 u32 major_hash2 = le32_to_cpu(entry2->dx_major_hash); in dx_leaf_sort_cmp()
3516 u32 minor_hash2 = le32_to_cpu(entry2->dx_minor_hash); in dx_leaf_sort_cmp()
3536 struct ocfs2_dx_entry *entry2 = b; in dx_leaf_sort_swap() local
3540 swap(*entry1, *entry2); in dx_leaf_sort_swap()