From: Siddh Raman Pant Date: Mon, 2 Sep 2024 09:32:48 +0000 (+0530) Subject: SUNRPC: clnt.c: Remove misleading comment X-Git-Tag: v6.12-rc1~56^2~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2e001972e8ebc318de3b5542887ac06ea309aff8;p=thirdparty%2Flinux.git SUNRPC: clnt.c: Remove misleading comment destroy_wait doesn't store all RPC clients. There was a list named "all_clients" above it, which got moved to struct sunrpc_net in 2012, but the comment was never removed. Fixes: 70abc49b4f4a ("SUNRPC: make SUNPRC clients list per network namespace context") Signed-off-by: Siddh Raman Pant Signed-off-by: Anna Schumaker --- diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index c7cea069a5df0..5e9f36505ab70 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c @@ -48,13 +48,8 @@ # define RPCDBG_FACILITY RPCDBG_CALL #endif -/* - * All RPC clients are linked into this list - */ - static DECLARE_WAIT_QUEUE_HEAD(destroy_wait); - static void call_start(struct rpc_task *task); static void call_reserve(struct rpc_task *task); static void call_reserveresult(struct rpc_task *task);