Lines Matching full:record
3 * mft.h - Defines for mft record handling in NTFS Linux kernel driver.
34 * @ni: ntfs inode structure of mft record
36 * Call flush_dcache_page() for the page in which an mft record resides.
38 * This must be called every time an mft record is modified, just after the
49 * mark_mft_record_dirty - set the mft record and the page containing it dirty
50 * @ni: ntfs inode describing the mapped mft record
52 * Set the mapped (extent) mft record of the (base or extent) ntfs inode @ni,
53 * as well as the page containing the mft record, dirty. Also, mark the base
54 * vfs inode dirty. This ensures that any changes to the mft record are
57 * NOTE: Do not do anything if the mft record is already marked dirty.
71 * write_mft_record - write out a mapped (extent) mft record
72 * @ni: ntfs inode describing the mapped (extent) mft record
73 * @m: mapped (extent) mft record to write
78 * no race conditions between writing the mft record via the dirty inode code
85 * On success, clean the mft record and return 0. On error, leave the mft
86 * record dirty and return -errno.