Lines Matching refs:mref
137 * @mref: inode number / mft record number to open
140 * specified by @mref. @mref specifies the inode number / mft record to read,
157 static ntfs_inode *ntfs_inode_real_open(ntfs_volume *vol, const MFT_REF mref)
166 ntfs_log_enter("Entering for inode %lld\n", (long long)MREF(mref));
174 if (ntfs_file_record_read(vol, mref, &ni->mrec, NULL))
180 ni->mft_no = MREF(mref);
189 " %lld", (long long)MREF(mref));
196 (long long)MREF(mref));
237 "%lld", (long long)l, (long long)MREF(mref));
251 (long long)MREF(mref));
441 void ntfs_inode_invalidate(ntfs_volume *vol, const MFT_REF mref)
445 item.inum = MREF(mref);
465 ntfs_inode *ntfs_inode_open(ntfs_volume *vol, const MFT_REF mref)
473 item.inum = MREF(mref);
485 ni = ntfs_inode_real_open(vol, mref);
491 ni = ntfs_inode_real_open(vol, mref);
555 * @mref: mft reference of the extent inode to load (in little endian)
557 * First check if the extent inode @mref is already attached to the base ntfs
561 * ntfs_inode structure and initialize it for the given inode @mref. @mref
577 ntfs_inode *ntfs_extent_inode_open(ntfs_inode *base_ni, const leMFT_REF mref)
579 u64 mft_no = MREF_LE(mref);
638 seq_no = MSEQNO_LE(mref);
654 if (ntfs_file_record_read(base_ni->vol, le64_to_cpu(mref), &ni->mrec, NULL))