From: Miklos Szeredi Add a new attribute flag ATTR_OPEN, with the meaning: "truncation was initiated by open() due to the O_TRUNC flag". This way filesystems wanting to implement truncation within their ->open() method can ignore such truncate requests. This is a quick & dirty hack, but it comes for free. Signed-off-by: Miklos Szeredi Cc: Christoph Hellwig Cc: Al Viro Cc: Andreas Dilger Signed-off-by: Andrew Morton --- diff -puN fs/namei.c~vfs-allow-filesystems-to-implement-atomic-opentruncate fs/namei.c --- a/fs/namei.c~vfs-allow-filesystems-to-implement-atomic-opentruncate +++ a/fs/namei.c @@ -1667,8 +1667,10 @@ int may_open(struct nameidata *nd, int a error = locks_verify_locked(inode); if (!error) { DQUOT_INIT(inode); - - error = do_truncate(dentry, 0, ATTR_MTIME|ATTR_CTIME, NULL); + + error = do_truncate(dentry, 0, + ATTR_MTIME|ATTR_CTIME|ATTR_OPEN, + NULL); } put_write_access(inode); if (error) diff -puN include/linux/fs.h~vfs-allow-filesystems-to-implement-atomic-opentruncate include/linux/fs.h --- a/include/linux/fs.h~vfs-allow-filesystems-to-implement-atomic-opentruncate +++ a/include/linux/fs.h @@ -337,6 +337,7 @@ typedef void (dio_iodone_t)(struct kiocb #define ATTR_KILL_SGID 4096 #define ATTR_FILE 8192 #define ATTR_KILL_PRIV 16384 +#define ATTR_OPEN 32768 /* Truncating from open(O_TRUNC) */ /* * This is the Inode Attributes structure, used for notify_change(). It _