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, 6 Aug 2009 19:37:42 +0000 (15:37 -0400)
commit4836eec984f0b0d3c06b8d72cc96e8af00b19cf5
treec70f9025ee20af17e04523b3e94e15a034134c0a
parent0494ffd956524fcc2dd3f445835b72c6c5e02929
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