sunrpc: display xprt's queuelen of assigned tasks via sysfs
authorOlga Kornievskaia <kolga@netapp.com>
Thu, 24 Jun 2021 03:28:52 +0000 (23:28 -0400)
committerTrond Myklebust <trond.myklebust@hammerspace.com>
Thu, 8 Jul 2021 18:03:24 +0000 (14:03 -0400)
Once a task grabs a trasnport it's reflected in the queuelen of
the rpc_xprt structure. Add display of that value in the xprt's
info file in sysfs.

Signed-off-by: Olga Kornievskaia <kolga@netapp.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
net/sunrpc/sysfs.c

index a30ad18..b576c7f 100644 (file)
@@ -113,13 +113,15 @@ static ssize_t rpc_sysfs_xprt_info_show(struct kobject *kobj,
        ret = sprintf(buf, "last_used=%lu\ncur_cong=%lu\ncong_win=%lu\n"
                       "max_num_slots=%u\nmin_num_slots=%u\nnum_reqs=%u\n"
                       "binding_q_len=%u\nsending_q_len=%u\npending_q_len=%u\n"
-                      "backlog_q_len=%u\nmain_xprt=%d\nsrc_port=%u\n",
+                      "backlog_q_len=%u\nmain_xprt=%d\nsrc_port=%u\n"
+                      "tasks_queuelen=%ld\n",
                       xprt->last_used, xprt->cong, xprt->cwnd, xprt->max_reqs,
                       xprt->min_reqs, xprt->num_reqs, xprt->binding.qlen,
                       xprt->sending.qlen, xprt->pending.qlen,
                       xprt->backlog.qlen, xprt->main,
                       (xprt->xprt_class->ident == XPRT_TRANSPORT_TCP) ?
-                      get_srcport(xprt) : 0);
+                      get_srcport(xprt) : 0,
+                      atomic_long_read(&xprt->queuelen));
        xprt_put(xprt);
        return ret + 1;
 }