fs: introduce new truncate sequence
Introduce a new truncate calling sequence into fs/mm subsystems. Rather than setattr > vmtruncate > truncate, have filesystems call their truncate sequence from ->setattr if filesystem specific operations are required. vmtruncate is deprecated, and truncate_pagecache and inode_newsize_ok helpers introduced previously should be used. simple_setattr is introduced for simple in-ram filesystems to implement the new truncate sequence. Eventually all filesystems should be converted to implement a setattr, and the default code in notify_change should go away. simple_setsize is also introduced to perform just the ATTR_SIZE portion of simple_setattr (ie. changing i_size and trimming pagecache). To implement the new truncate sequence: - filesystem specific manipulations (eg freeing blocks) must be done in the setattr method rather than ->truncate. - vmtruncate can not be used by core code to trim blocks past i_size in the event of write failure after allocation, so this mu...
Showing
- Documentation/filesystems/vfs.txt 6 additions, 1 deletionDocumentation/filesystems/vfs.txt
- fs/attr.c 40 additions, 10 deletionsfs/attr.c
- fs/buffer.c 98 additions, 25 deletionsfs/buffer.c
- fs/direct-io.c 40 additions, 21 deletionsfs/direct-io.c
- fs/libfs.c 76 additions, 0 deletionsfs/libfs.c
- include/linux/buffer_head.h 9 additions, 0 deletionsinclude/linux/buffer_head.h
- include/linux/fs.h 26 additions, 1 deletioninclude/linux/fs.h
- mm/truncate.c 5 additions, 5 deletionsmm/truncate.c
Please register or sign in to comment