diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-09-05 21:42:32 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-01-09 08:22:01 +0100 |
commit | 8f5ff877bf19076c49eda0b440ad16507ebd1fcf (patch) | |
tree | e8a833fca754887f4585261d23c93eca9a5427ce | |
parent | 1678adac85dadd18fca4c185381812500cfb1262 (diff) | |
download | linux-stable-8f5ff877bf19076c49eda0b440ad16507ebd1fcf.tar.gz linux-stable-8f5ff877bf19076c49eda0b440ad16507ebd1fcf.tar.bz2 linux-stable-8f5ff877bf19076c49eda0b440ad16507ebd1fcf.zip |
nfs_write_end(): fix handling of short copies
commit c0cf3ef5e0f47e385920450b245d22bead93e7ad upstream.
What matters when deciding if we should make a page uptodate is
not how much we _wanted_ to copy, but how much we actually have
copied. As it is, on architectures that do not zero tail on
short copy we can leave uninitialized data in page marked uptodate.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | fs/nfs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/file.c b/fs/nfs/file.c index ca699ddc11c1..e6a0d22315e9 100644 --- a/fs/nfs/file.c +++ b/fs/nfs/file.c @@ -397,7 +397,7 @@ static int nfs_write_end(struct file *file, struct address_space *mapping, */ if (!PageUptodate(page)) { unsigned pglen = nfs_page_length(page); - unsigned end = offset + len; + unsigned end = offset + copied; if (pglen == 0) { zero_user_segments(page, 0, offset, |