NFS: simplify check for freeing cn_resp

nfs42_files_from_same_server() is called to check if freeing
cn_resp is required, just do the free.

Signed-off-by: Tom Rix <trix@redhat.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
This commit is contained in:
Tom Rix 2022-01-17 09:50:10 -08:00 коммит произвёл Trond Myklebust
Родитель 53ab78cd6d
Коммит 98c27f276b
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -180,8 +180,8 @@ retry:
ret = nfs42_proc_copy(file_in, pos_in, file_out, pos_out, count,
nss, cnrs, sync);
out:
if (!nfs42_files_from_same_server(file_in, file_out))
kfree(cn_resp);
kfree(cn_resp);
if (ret == -EAGAIN)
goto retry;
return ret;