]> git.baikalelectronics.ru Git - kernel.git/commit
nfsd: don't call nfsd_file_put from client states seqfile display
authorJeff Layton <jlayton@kernel.org>
Fri, 28 Oct 2022 12:13:53 +0000 (08:13 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Jan 2023 10:40:55 +0000 (11:40 +0100)
commit90ea8cde89765f67260ab3866a8e2f543ab46a20
treefb90f2246e3d0705858f6ee8b70bf880987036fa
parentea576c63a5669015341024e6665c3b7e6145665c
nfsd: don't call nfsd_file_put from client states seqfile display

[ Upstream commit 929645ccc9b1d88a0435f8e3cb11a3d81e8f5409 ]

We had a report of this:

    BUG: sleeping function called from invalid context at fs/nfsd/filecache.c:440

...with a stack trace showing nfsd_file_put being called from
nfs4_show_open. This code has always tried to call fput while holding a
spinlock, but we recently changed this to use the filecache, and that
started triggering the might_sleep() in nfsd_file_put.

states_start takes and holds the cl_lock while iterating over the
client's states, and we can't sleep with that held.

Have the various nfs4_show_* functions instead hold the fi_lock instead
of taking a nfsd_file reference.

Fixes: 4d7368eabbcf ("nfsd4: add file to display list of client's opens")
Link: https://bugzilla.redhat.com/show_bug.cgi?id=2138357
Reported-by: Zhi Li <yieli@redhat.com>
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/nfsd/nfs4state.c