Unionfs: restructure unionfs_setattr and fix truncation order
authorHugh Dickins <hugh@veritas.com>
Fri, 28 Dec 2007 18:41:39 +0000 (13:41 -0500)
committerErez Zadok <ezk@cs.sunysb.edu>
Thu, 16 Jun 2011 22:45:28 +0000 (15:45 -0700)
commit5b61747c7ae9b0b6b9eb9b3cce434e25f6574362
tree8bd918465454279b5e7934642d83f5390634f1e4
parent02c85e3ae1512f7e2b1b2840e09cc1cb07637ce2
Unionfs: restructure unionfs_setattr and fix truncation order

Restructure the code to move the lower notify_change out of the loop in
unionfs_setattr.  Cleanup and simplify the code.  Then fix the truncation
order which fsx-linux in a unionfs on tmpfs found.  Then handle copyup
properly.

When shrinking a file, unionfs_setattr needs to vmtruncate the upper level
before notifying change to the lower level, to eliminate those dirty pages
beyond new eof which otherwise drift down to the lower level's writepage,
writing beyond its eof (and later uncovered when the file is expanded).

Also truncate the upper level first when expanding, in the case when
the upper level's s_maxbytes is more limiting than the lower level's.

Signed-off-by: Hugh Dickins <hugh@veritas.com>
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
fs/unionfs/inode.c