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

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

svcrpc: make svc_create_xprt enqueue on clearing XPT_BUSY



Whenever we clear XPT_BUSY we should call svc_xprt_enqueue().  Without
that we may fail to notice any events (such as new connections) that
arrived while XPT_BUSY was set.

Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent a8e10078
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -238,7 +238,7 @@ int svc_create_xprt(struct svc_serv *serv, const char *xprt_name,
		list_add(&newxprt->xpt_list, &serv->sv_permsocks);
		spin_unlock_bh(&serv->sv_lock);
		newport = svc_xprt_local_port(newxprt);
		clear_bit(XPT_BUSY, &newxprt->xpt_flags);
		svc_xprt_received(newxprt);
		return newport;
	}
 err: