]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commit
NFSv4.2: fix error handling in nfs42_proc_getxattr
authorFedor Pchelkin <pchelkin@ispras.ru>
Tue, 25 Jul 2023 11:58:58 +0000 (14:58 +0300)
committerTrond Myklebust <trond.myklebust@hammerspace.com>
Sat, 19 Aug 2023 14:26:29 +0000 (10:26 -0400)
commit4e3733fd2b0f677faae21cf838a43faf317986d3
treecff0af28313860eec8604d3b2027bc02e8e12581
parentc3dd7de2a3137d84161dcfb522c19f8b2884e502
NFSv4.2: fix error handling in nfs42_proc_getxattr

There is a slight issue with error handling code inside
nfs42_proc_getxattr(). If page allocating loop fails then we free the
failing page array element which is NULL but __free_page() can't deal with
NULL args.

Found by Linux Verification Center (linuxtesting.org).

Fixes: a1f26739ccdc ("NFSv4.2: improve page handling for GETXATTR")
Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru>
Reviewed-by: Benjamin Coddington <bcodding@redhat.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
fs/nfs/nfs42proc.c