Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc2df47a authored by J. Bruce Fields's avatar J. Bruce Fields
Browse files

nfsd4: BUG_ON(!is_spin_locked()) no good on UP kernels



Most frequent symptom was a BUG triggering in expire_client, with the
server locking up shortly thereafter.

Introduced by 508dc6e1 "nfsd41:
free_session/free_client must be called under the client_lock".

Cc: stable@kernel.org
Cc: Benny Halevy <bhalevy@tonian.com>
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent 12918b10
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -900,7 +900,7 @@ static void free_session(struct kref *kref)
	struct nfsd4_session *ses;
	struct nfsd4_session *ses;
	int mem;
	int mem;


	BUG_ON(!spin_is_locked(&client_lock));
	lockdep_assert_held(&client_lock);
	ses = container_of(kref, struct nfsd4_session, se_ref);
	ses = container_of(kref, struct nfsd4_session, se_ref);
	nfsd4_del_conns(ses);
	nfsd4_del_conns(ses);
	spin_lock(&nfsd_drc_lock);
	spin_lock(&nfsd_drc_lock);
@@ -1080,7 +1080,7 @@ static struct nfs4_client *alloc_client(struct xdr_netobj name)
static inline void
static inline void
free_client(struct nfs4_client *clp)
free_client(struct nfs4_client *clp)
{
{
	BUG_ON(!spin_is_locked(&client_lock));
	lockdep_assert_held(&client_lock);
	while (!list_empty(&clp->cl_sessions)) {
	while (!list_empty(&clp->cl_sessions)) {
		struct nfsd4_session *ses;
		struct nfsd4_session *ses;
		ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
		ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,