Searched refs:mp_ofs (Results 1 – 1 of 1) sorted by relevance
/kernel/linux/linux-5.10/fs/ntfs/ |
D | attrib.c | 1558 int mp_size, mp_ofs, name_ofs, arec_size, err, err2; in ntfs_attr_make_non_resident() local 1656 mp_ofs = (name_ofs + a->name_length * sizeof(ntfschar) + 7) & ~7; in ntfs_attr_make_non_resident() 1661 arec_size = (mp_ofs + mp_size + 7) & ~7; in ntfs_attr_make_non_resident() 1698 a->data.non_resident.mapping_pairs_offset = cpu_to_le16(mp_ofs); in ntfs_attr_make_non_resident() 1714 err = ntfs_mapping_pairs_build(vol, (u8*)a + mp_ofs, in ntfs_attr_make_non_resident() 1715 arec_size - mp_ofs, rl, 0, -1, NULL); in ntfs_attr_make_non_resident() 1774 mp_ofs = (name_ofs + a->name_length * sizeof(ntfschar) + 7) & ~7; in ntfs_attr_make_non_resident() 1776 arec_size = (mp_ofs + attr_size + 7) & ~7; in ntfs_attr_make_non_resident() 1789 if ((mp_ofs + attr_size) > arec_size) { in ntfs_attr_make_non_resident() 1791 attr_size = arec_size - mp_ofs; in ntfs_attr_make_non_resident() [all …]
|