Searched refs:mref (Results 1 – 9 of 9) sorted by relevance
/linux-6.1.9/fs/ntfs/ |
D | namei.c | 96 MFT_REF mref; in ntfs_lookup() local 111 mref = ntfs_lookup_inode_by_name(NTFS_I(dir_ino), uname, uname_len, in ntfs_lookup() 114 if (!IS_ERR_MREF(mref)) { in ntfs_lookup() 115 dent_ino = MREF(mref); in ntfs_lookup() 120 if (is_bad_inode(dent_inode) || MSEQNO(mref) == in ntfs_lookup() 138 dent_ino, MSEQNO(mref), in ntfs_lookup() 151 if (MREF_ERR(mref) == -ENOENT) { in ntfs_lookup() 159 "code %i.", -MREF_ERR(mref)); in ntfs_lookup() 160 return ERR_PTR(MREF_ERR(mref)); in ntfs_lookup()
|
D | dir.c | 77 u64 mref; in ntfs_lookup_inode_by_name() local 167 name->mref = le64_to_cpu( in ntfs_lookup_inode_by_name() 176 mref = le64_to_cpu(ie->data.dir.indexed_file); in ntfs_lookup_inode_by_name() 179 return mref; in ntfs_lookup_inode_by_name() 220 name->mref = le64_to_cpu(ie->data.dir.indexed_file); in ntfs_lookup_inode_by_name() 278 return name->mref; in ntfs_lookup_inode_by_name() 427 name->mref = le64_to_cpu( in ntfs_lookup_inode_by_name() 436 mref = le64_to_cpu(ie->data.dir.indexed_file); in ntfs_lookup_inode_by_name() 439 return mref; in ntfs_lookup_inode_by_name() 482 name->mref = le64_to_cpu(ie->data.dir.indexed_file); in ntfs_lookup_inode_by_name() [all …]
|
D | dir.h | 22 MFT_REF mref; member
|
D | super.c | 1254 MFT_REF mref; in check_windows_hibernation_status() local 1274 mref = ntfs_lookup_inode_by_name(NTFS_I(vol->root_ino), hiberfil, 12, in check_windows_hibernation_status() 1277 if (IS_ERR_MREF(mref)) { in check_windows_hibernation_status() 1278 ret = MREF_ERR(mref); in check_windows_hibernation_status() 1293 vi = ntfs_iget(vol->sb, MREF(mref)); in check_windows_hibernation_status() 1351 MFT_REF mref; in load_and_init_quota() local 1367 mref = ntfs_lookup_inode_by_name(NTFS_I(vol->extend_ino), Quota, 6, in load_and_init_quota() 1370 if (IS_ERR_MREF(mref)) { in load_and_init_quota() 1375 if (MREF_ERR(mref) == -ENOENT) { in load_and_init_quota() 1392 tmp_ino = ntfs_iget(vol->sb, MREF(mref)); in load_and_init_quota() [all …]
|
D | mft.h | 21 extern MFT_RECORD *map_extent_mft_record(ntfs_inode *base_ni, MFT_REF mref,
|
D | mft.c | 235 MFT_RECORD *map_extent_mft_record(ntfs_inode *base_ni, MFT_REF mref, in map_extent_mft_record() argument 242 unsigned long mft_no = MREF(mref); in map_extent_mft_record() 243 u16 seq_no = MSEQNO(mref); in map_extent_mft_record()
|
/linux-6.1.9/drivers/tee/amdtee/ |
D | call.c | 50 amd->params[i].mref.buf_id = buf_id; in tee_params_to_amd_params() 51 amd->params[i].mref.offset = tee[i].u.memref.shm_offs; in tee_params_to_amd_params() 52 amd->params[i].mref.size = tee[i].u.memref.size; in tee_params_to_amd_params() 55 i, amd->params[i].mref.buf_id, in tee_params_to_amd_params() 56 i, amd->params[i].mref.offset, in tee_params_to_amd_params() 57 i, amd->params[i].mref.size); in tee_params_to_amd_params() 103 tee[i].u.memref.shm_offs = amd->params[i].mref.offset; in amd_params_to_tee_params() 104 tee[i].u.memref.size = amd->params[i].mref.size; in amd_params_to_tee_params() 107 i, amd->params[i].mref.buf_id, in amd_params_to_tee_params() 108 i, amd->params[i].mref.offset, in amd_params_to_tee_params() [all …]
|
D | amdtee_if.h | 43 struct memref mref; member
|
/linux-6.1.9/drivers/media/v4l2-core/ |
D | v4l2-ctrls-api.c | 24 struct v4l2_ctrl_ref *mref; member 310 h->mref = ref; in prepare_ext_ctrls() 336 helpers[i].mref->helper = NULL; in prepare_ext_ctrls() 338 struct v4l2_ctrl_ref *mref = h->mref; in prepare_ext_ctrls() local 344 if (mref->helper) { in prepare_ext_ctrls() 350 mref->helper->next = i; in prepare_ext_ctrls() 355 h->mref = NULL; in prepare_ext_ctrls() 358 mref->helper = h; in prepare_ext_ctrls() 425 if (!helpers[i].mref) in v4l2_g_ext_ctrls_common() 428 master = helpers[i].mref->ctrl; in v4l2_g_ext_ctrls_common() [all …]
|