.\" This manpage has been automatically generated by docbook2man .\" from a DocBook document. This tool can be found at: .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . .TH "MARK_NTFS_RECORD_DIRTY" "9" "09 October 2005" "" "" .SH NAME mark_ntfs_record_dirty \- mark an ntfs record dirty .SH SYNOPSIS "SYNOPSIS" .sp \fB .sp void mark_ntfs_record_dirty (struct page * \fIpage\fB, const unsigned int \fIofs\fB); \fR .SH "ARGUMENTS" .TP \fB\fIpage\fB\fR page containing the ntfs record to mark dirty .TP \fB\fIofs\fB\fR byte offset within \fIpage\fR at which the ntfs record begins .SH "DESCRIPTION" .PP Set the buffers and the page in which the ntfs record is located dirty. .PP The latter also marks the vfs inode the ntfs record belongs to dirty (I_DIRTY_PAGES only). .PP If the page does not have buffers, we create them and set them uptodate. The page may not be locked which is why we need to handle the buffers under the mapping->private_lock. Once the buffers are marked dirty we no longer need the lock since \fBtry_to_free_buffers\fR does not free dirty buffers.