projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
843aa17
)
NFSv4.2 fix kfree in __nfs42_copy_file_range
author
Olga Kornievskaia
<kolga@netapp.com>
Fri, 15 Nov 2019 20:12:49 +0000
(15:12 -0500)
committer
Trond Myklebust
<trond.myklebust@hammerspace.com>
Mon, 18 Nov 2019 09:50:30 +0000
(10:50 +0100)
This is triggering problems with static analysis with Coverity
Reported-by: Colin King <colin.king@netapp.com>
Signed-off-by: Olga Kornievskaia <kolga@netapp.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
fs/nfs/nfs4file.c
patch
|
blob
|
history
diff --git
a/fs/nfs/nfs4file.c
b/fs/nfs/nfs4file.c
index b054d57e77d95a0f1b1fa3d856b1cb669366d862..ef8c16779f4cfba0e3a742a49169113f64ee8601 100644
(file)
--- a/
fs/nfs/nfs4file.c
+++ b/
fs/nfs/nfs4file.c
@@
-177,7
+177,8
@@
retry:
ret = nfs42_proc_copy(file_in, pos_in, file_out, pos_out, count,
nss, cnrs, sync);
out:
- kfree(cn_resp);
+ if (!nfs42_files_from_same_server(file_in, file_out))
+ kfree(cn_resp);
if (ret == -EAGAIN)
goto retry;
return ret;