diff options
-rw-r--r-- | fs/nfs/nfs4proc.c | 4 | ||||
-rw-r--r-- | fs/nfs/pnfs.h | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 0b711227cfa5..288be08bda95 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c | |||
@@ -3211,7 +3211,9 @@ nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr, | |||
3211 | struct nfs4_label *label = NULL; | 3211 | struct nfs4_label *label = NULL; |
3212 | int status; | 3212 | int status; |
3213 | 3213 | ||
3214 | if (pnfs_ld_layoutret_on_setattr(inode)) | 3214 | if (pnfs_ld_layoutret_on_setattr(inode) && |
3215 | sattr->ia_valid & ATTR_SIZE && | ||
3216 | sattr->ia_size < i_size_read(inode)) | ||
3215 | pnfs_commit_and_return_layout(inode); | 3217 | pnfs_commit_and_return_layout(inode); |
3216 | 3218 | ||
3217 | nfs_fattr_init(fattr); | 3219 | nfs_fattr_init(fattr); |
diff --git a/fs/nfs/pnfs.h b/fs/nfs/pnfs.h index b10f12fc6818..693ce42ec683 100644 --- a/fs/nfs/pnfs.h +++ b/fs/nfs/pnfs.h | |||
@@ -69,7 +69,8 @@ enum { | |||
69 | }; | 69 | }; |
70 | 70 | ||
71 | enum layoutdriver_policy_flags { | 71 | enum layoutdriver_policy_flags { |
72 | /* Should the pNFS client commit and return the layout upon a setattr */ | 72 | /* Should the pNFS client commit and return the layout upon truncate to |
73 | * a smaller size */ | ||
73 | PNFS_LAYOUTRET_ON_SETATTR = 1 << 0, | 74 | PNFS_LAYOUTRET_ON_SETATTR = 1 << 0, |
74 | PNFS_LAYOUTRET_ON_ERROR = 1 << 1, | 75 | PNFS_LAYOUTRET_ON_ERROR = 1 << 1, |
75 | PNFS_READ_WHOLE_PAGE = 1 << 2, | 76 | PNFS_READ_WHOLE_PAGE = 1 << 2, |