projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb2c50d
)
NFS: Fix initialisation of I/O result struct in nfs_pgio_rpcsetup
author
Trond Myklebust
<trond.myklebust@hammerspace.com>
Wed, 14 Aug 2019 18:19:09 +0000
(14:19 -0400)
committer
Trond Myklebust
<trond.myklebust@hammerspace.com>
Mon, 19 Aug 2019 12:56:04 +0000
(08:56 -0400)
Initialise the result count to 0 rather than initialising it to the
argument count. The reason is that we want to ensure we record the
I/O stats correctly in the case where an error is returned (for
instance in the layoutstats).
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
fs/nfs/pagelist.c
patch
|
blob
|
history
diff --git
a/fs/nfs/pagelist.c
b/fs/nfs/pagelist.c
index 56cefa0ab80449ec26b4b3ddcb0e09278c77607e..20b3717cd7ca83b8bb9efad78c9099b0d7a144a2 100644
(file)
--- a/
fs/nfs/pagelist.c
+++ b/
fs/nfs/pagelist.c
@@
-590,7
+590,7
@@
static void nfs_pgio_rpcsetup(struct nfs_pgio_header *hdr,
}
hdr->res.fattr = &hdr->fattr;
- hdr->res.count =
count
;
+ hdr->res.count =
0
;
hdr->res.eof = 0;
hdr->res.verf = &hdr->verf;
nfs_fattr_init(&hdr->fattr);