diff options
author | Olga Kornievskaia | 2022-07-25 09:32:30 -0400 |
---|---|---|
committer | Trond Myklebust | 2022-07-25 10:06:04 -0400 |
commit | 92cc04f60ab4ae199eee507e5cd4d5aa6c722e9c (patch) | |
tree | a9ae856ad5ab52fe19cb45bfe788cc3b8d65aed2 /include/linux/sunrpc | |
parent | 273d6aed9e5a1859dda15256f45561315c3d237a (diff) |
SUNRPC create a function that probes only offline transports
For only offline transports, attempt to check connectivity via
a NULL call and, if that succeeds, call a provided session trunking
detection function.
Signed-off-by: Olga Kornievskaia <kolga@netapp.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'include/linux/sunrpc')
-rw-r--r-- | include/linux/sunrpc/clnt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/sunrpc/clnt.h b/include/linux/sunrpc/clnt.h index 7a43fd514398..75eea5ebb179 100644 --- a/include/linux/sunrpc/clnt.h +++ b/include/linux/sunrpc/clnt.h @@ -235,6 +235,8 @@ int rpc_clnt_setup_test_and_add_xprt(struct rpc_clnt *, struct rpc_xprt *, void *); void rpc_clnt_manage_trunked_xprts(struct rpc_clnt *); +void rpc_clnt_probe_trunked_xprts(struct rpc_clnt *, + struct rpc_add_xprt_test *); const char *rpc_proc_name(const struct rpc_task *task); |