Move the initialization of the sc_ctxt_free list to the client/listener generic bit of the init logic. This is necessary to avoid a bug check when shutting down a listening endpoint when list debug is enabled. This bug was introduced when the context cache was converted to use Linux lists. Signed-off-by: Tom Tucker <tom@xxxxxxxxxxxxxxxxxxxxx> --- net/sunrpc/xprtrdma/svc_rdma_transport.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/sunrpc/xprtrdma/svc_rdma_transport.c b/net/sunrpc/xprtrdma/svc_rdma_transport.c index 54b2126..2c2f5f6 100644 --- a/net/sunrpc/xprtrdma/svc_rdma_transport.c +++ b/net/sunrpc/xprtrdma/svc_rdma_transport.c @@ -446,7 +446,6 @@ static void create_context_cache(struct svcxprt_rdma *xprt, xprt->sc_ctxt_cnt = 0; atomic_set(&xprt->sc_ctxt_used, 0); - INIT_LIST_HEAD(&xprt->sc_ctxt_free); for (i = 0; i < ctxt_count; i++) { ctxt = kmalloc(sizeof(*ctxt), GFP_KERNEL); if (ctxt) { @@ -496,6 +495,7 @@ static struct svcxprt_rdma *rdma_create_xprt(struct svc_serv *serv, atomic_set(&cma_xprt->sc_sq_count, 0); atomic_set(&cma_xprt->sc_ctxt_used, 0); + INIT_LIST_HEAD(&cma_xprt->sc_ctxt_free); if (!listener) { int reqs = cma_xprt->sc_max_requests; create_context_cache(cma_xprt, -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html