1
0
Fork 0

NFS: Fix initialisation of I/O result struct in nfs_pgio_rpcsetup

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>
alistair/sunxi64-5.4-dsi
Trond Myklebust 2019-08-14 14:19:09 -04:00
parent eb2c50da9e
commit 17d8c5d145
1 changed files with 1 additions and 1 deletions

View File

@ -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);