Message ID | 20171114230631.14682-3-JPEWhacker@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/net/sunrpc/debugfs.c b/net/sunrpc/debugfs.c index e980d2a493de..2ca67b681c1e 100644 --- a/net/sunrpc/debugfs.c +++ b/net/sunrpc/debugfs.c @@ -160,6 +160,10 @@ rpc_clnt_debugfs_register(struct rpc_clnt *clnt) if (!debugfs_create_symlink("xprt", clnt->cl_debugfs, name)) goto out_err; + if (!debugfs_create_bool("kill_new_tasks", S_IRUSR | S_IWUSR, + clnt->cl_debugfs, &clnt->cl_kill_new_tasks)) + goto out_err; + return; out_err: debugfs_remove_recursive(clnt->cl_debugfs);
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> --- net/sunrpc/debugfs.c | 4 ++++ 1 file changed, 4 insertions(+)