Searched refs:data_pos (Results 1 – 4 of 4) sorted by relevance
/fs/ntfs/ |
D | mst.c | 31 u16 *usa_pos, *data_pos; in post_read_mst_fixup() local 56 data_pos = (u16*)b + NTFS_BLOCK_SIZE/sizeof(u16) - 1; in post_read_mst_fixup() 61 if (*data_pos != usn) { in post_read_mst_fixup() 70 data_pos += NTFS_BLOCK_SIZE/sizeof(u16); in post_read_mst_fixup() 74 data_pos = (u16*)b + NTFS_BLOCK_SIZE/sizeof(u16) - 1; in post_read_mst_fixup() 81 *data_pos = *(++usa_pos); in post_read_mst_fixup() 83 data_pos += NTFS_BLOCK_SIZE/sizeof(u16); in post_read_mst_fixup() 111 le16 *usa_pos, *data_pos; in pre_write_mst_fixup() local 141 data_pos = (le16*)b + NTFS_BLOCK_SIZE/sizeof(le16) - 1; in pre_write_mst_fixup() 148 *(++usa_pos) = *data_pos; in pre_write_mst_fixup() [all …]
|
D | mft.c | 1129 s64 pass_end, ll, data_pos, pass_start, ofs, bit; in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() local 1155 data_pos = vol->mft_data_pos; in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() 1157 data_pos = base_ni->mft_no + 1; in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() 1158 if (data_pos < 24) in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() 1159 data_pos = 24; in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() 1160 if (data_pos >= pass_end) { in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() 1161 data_pos = 24; in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() 1164 if (data_pos >= pass_end) in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() 1167 pass_start = data_pos; in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() 1171 (long long)data_pos); in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() [all …]
|
/fs/overlayfs/ |
D | copy_up.c | 141 loff_t data_pos = -1; in ovl_copy_up_data() local 198 if (skip_hole && data_pos < old_pos) { in ovl_copy_up_data() 199 data_pos = vfs_llseek(old_file, old_pos, SEEK_DATA); in ovl_copy_up_data() 200 if (data_pos > old_pos) { in ovl_copy_up_data() 201 hole_len = data_pos - old_pos; in ovl_copy_up_data() 203 old_pos = new_pos = data_pos; in ovl_copy_up_data() 205 } else if (data_pos == -ENXIO) { in ovl_copy_up_data() 207 } else if (data_pos < 0) { in ovl_copy_up_data()
|
/fs/nfsd/ |
D | nfs4xdr.c | 4667 loff_t data_pos = vfs_llseek(file, read->rd_offset, SEEK_DATA); in nfsd4_encode_read_plus_hole() local 4672 if (data_pos == -ENXIO) in nfsd4_encode_read_plus_hole() 4673 data_pos = f_size; in nfsd4_encode_read_plus_hole() 4674 else if (data_pos <= read->rd_offset || (data_pos < f_size && data_pos % PAGE_SIZE)) in nfsd4_encode_read_plus_hole() 4676 count = data_pos - read->rd_offset; in nfsd4_encode_read_plus_hole()
|