Searched refs:mp_ofs (Results 1 – 1 of 1) sorted by relevance
/Linux-v5.10/fs/ntfs/ |
D | attrib.c | 1534 int mp_size, mp_ofs, name_ofs, arec_size, err, err2; in ntfs_attr_make_non_resident() local 1632 mp_ofs = (name_ofs + a->name_length * sizeof(ntfschar) + 7) & ~7; in ntfs_attr_make_non_resident() 1637 arec_size = (mp_ofs + mp_size + 7) & ~7; in ntfs_attr_make_non_resident() 1674 a->data.non_resident.mapping_pairs_offset = cpu_to_le16(mp_ofs); in ntfs_attr_make_non_resident() 1690 err = ntfs_mapping_pairs_build(vol, (u8*)a + mp_ofs, in ntfs_attr_make_non_resident() 1691 arec_size - mp_ofs, rl, 0, -1, NULL); in ntfs_attr_make_non_resident() 1750 mp_ofs = (name_ofs + a->name_length * sizeof(ntfschar) + 7) & ~7; in ntfs_attr_make_non_resident() 1752 arec_size = (mp_ofs + attr_size + 7) & ~7; in ntfs_attr_make_non_resident() 1765 if ((mp_ofs + attr_size) > arec_size) { in ntfs_attr_make_non_resident() 1767 attr_size = arec_size - mp_ofs; in ntfs_attr_make_non_resident() [all …]
|