aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sunrpc
diff options
context:
space:
mode:
authorOlga Kornievskaia <kolga@netapp.com>2021-08-27 14:37:14 -0400
committerAnna Schumaker <Anna.Schumaker@Netapp.com>2021-08-27 16:36:53 -0400
commit3a3f976639f267823e443fdd8bffa03848fa1c3f (patch)
tree482aa34aaaa77127cdee0555f753ba9fe3129c32 /include/linux/sunrpc
parentNFSv3: Delete duplicate judgement in nfs3_async_handle_jukebox (diff)
downloadlinux-dev-3a3f976639f267823e443fdd8bffa03848fa1c3f.tar.xz
linux-dev-3a3f976639f267823e443fdd8bffa03848fa1c3f.zip
SUNRPC keep track of number of transports to unique addresses
Currently, xprt_switch keeps a number of all xprts (xps_nxprts) that were added to the switch regardless of whethere it's an nconnect transport or a transport to a trunkable address. Introduce a new counter to keep track of transports to unique destination addresses per xprt_switch. Signed-off-by: Olga Kornievskaia <kolga@netapp.com> Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'include/linux/sunrpc')
-rw-r--r--include/linux/sunrpc/xprtmultipath.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/sunrpc/xprtmultipath.h b/include/linux/sunrpc/xprtmultipath.h
index b19addc8b715..bbb8a5fa0816 100644
--- a/include/linux/sunrpc/xprtmultipath.h
+++ b/include/linux/sunrpc/xprtmultipath.h
@@ -18,6 +18,7 @@ struct rpc_xprt_switch {
unsigned int xps_id;
unsigned int xps_nxprts;
unsigned int xps_nactive;
+ unsigned int xps_nunique_destaddr_xprts;
atomic_long_t xps_queuelen;
struct list_head xps_xprt_list;