void ntfs_dirty_inode (struct inode * vi);
This is called from fs/inode.c::__mark_inode_dirty, when the inode itself is being marked dirty. An example is when update_atime is invoked.
We mark the inode dirty by setting both the page in which the mft record resides and the buffer heads in that page which correspond to the mft record dirty. This ensures that the changes will eventually be propagated to disk when the inode is set dirty.
As we are only a read only driver it is safe to just return here for the moment.
As we are only a read only driver it is safe to just return here for the moment.
As we are only a read only driver it is safe to just return here for the moment.