linux-rdma.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
To: Chuck Lever <chuck.lever-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
Cc: "linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Linux NFS Mailing List
	<linux-nfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH v2 00/18] NFS/RDMA client patches for v4.7
Date: Tue, 26 Apr 2016 11:45:03 -0500	[thread overview]
Message-ID: <571F9B0F.8050202@opengridcomputing.com> (raw)
In-Reply-To: <7580EA21-0782-470B-94FF-2B872A92B089-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>

On 4/26/2016 9:57 AM, Chuck Lever wrote:
>
>> On Apr 26, 2016, at 10:13 AM, Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org> wrote:
>>
>> Hey Chuck, I'm testing this series on cxgb4.    I'm running 'iozone -a -+d -I' on a share and watching the server stats.  Are the starve numbers expected?
>
> Yes, unless you're seeing much higher numbers than
> you used to.
>
>
>> Every 5.0s: for s in  /proc/sys/sunrpc/svc_rdma/rdma_* ; do echo -n "$(basename $s): "; cat $s; done                              Tue Apr 26 07:10:17 2016
>>
>> rdma_stat_read: 379872
>> rdma_stat_recv: 498144
>> rdma_stat_rq_poll: 0
>> rdma_stat_rq_prod: 0
>> rdma_stat_rq_starve: 675564
>
> This means work was enqueued on the svc_xprt, but by the
> time the upper layer invoked svc_rdma_recvfrom, the work
> was already handled by an earlier wake-up.
>
> I'm not exactly sure why this happens, but it seems to be
> normal (if suboptimal).
>
>
>> rdma_stat_sq_poll: 0
>> rdma_stat_sq_prod: 0
>> rdma_stat_sq_starve: 1748000
>
> No SQ space to post a Send, so the caller is put to sleep.
>
> The server chronically underestimates the SQ depth, especially
> for FRWR. I haven't figured out a better way to estimate it.
>
> But it's generally harmless, as there is a mechanism to put
> callers to sleep until there is space on the SQ.
>


Thanks.

With this iw_cxgb4 drain fix applied:

[PATCH 3/3] iw_cxgb4: handing draining an idle qp

http://www.spinics.net/lists/linux-rdma/msg34927.html

The series tests good over cxgb4.

Tested-by: Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>

--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2016-04-26 16:45 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-25 19:20 [PATCH v2 00/18] NFS/RDMA client patches for v4.7 Chuck Lever
     [not found] ` <20160425185956.3566.64142.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-25 19:20   ` [PATCH v2 01/18] sunrpc: Advertise maximum backchannel payload size Chuck Lever
2016-04-25 19:21   ` [PATCH v2 02/18] xprtrdma: Bound the inline threshold values Chuck Lever
2016-04-25 19:21   ` [PATCH v2 03/18] xprtrdma: Limit number of RDMA segments in RPC-over-RDMA headers Chuck Lever
     [not found]     ` <20160425192112.3566.30703.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 19:43       ` Sagi Grimberg
2016-04-25 19:21   ` [PATCH v2 04/18] xprtrdma: Prevent inline overflow Chuck Lever
     [not found]     ` <20160425192120.3566.99978.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 19:55       ` Sagi Grimberg
     [not found]         ` <571FC7A3.2010407-NQWnxTmZq1alnMjI0IkVqw@public.gmane.org>
2016-04-26 20:04           ` Chuck Lever
     [not found]             ` <B6501EE8-870B-40C6-8F44-FA74308EC6E5-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2016-04-26 20:42               ` Sagi Grimberg
     [not found]                 ` <571FD2B3.1010505-NQWnxTmZq1alnMjI0IkVqw@public.gmane.org>
2016-04-26 20:56                   ` Chuck Lever
2016-04-25 19:21   ` [PATCH v2 05/18] xprtrdma: Avoid using Write list for small NFS READ requests Chuck Lever
     [not found]     ` <20160425192129.3566.16808.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 19:56       ` Sagi Grimberg
2016-04-25 19:21   ` [PATCH v2 06/18] xprtrdma: Update comments in rpcrdma_marshal_req() Chuck Lever
     [not found]     ` <20160425192137.3566.88818.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 19:57       ` Sagi Grimberg
2016-04-25 19:21   ` [PATCH v2 07/18] xprtrdma: Allow Read list and Reply chunk simultaneously Chuck Lever
     [not found]     ` <20160425192145.3566.55207.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 20:04       ` Sagi Grimberg
2016-04-25 19:21   ` [PATCH v2 08/18] xprtrdma: Remove rpcrdma_create_chunks() Chuck Lever
     [not found]     ` <20160425192153.3566.66360.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 20:04       ` Sagi Grimberg
2016-04-25 19:22   ` [PATCH v2 09/18] xprtrdma: Use core ib_drain_qp() API Chuck Lever
     [not found]     ` <20160425192201.3566.63979.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 20:07       ` Sagi Grimberg
2016-04-25 19:22   ` [PATCH v2 10/18] xprtrdma: Rename rpcrdma_frwr::sg and sg_nents Chuck Lever
     [not found]     ` <20160425192210.3566.71352.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 20:08       ` Sagi Grimberg
2016-04-25 19:22   ` [PATCH v2 11/18] xprtrdma: Save I/O direction in struct rpcrdma_frwr Chuck Lever
     [not found]     ` <20160425192218.3566.13233.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 20:12       ` Sagi Grimberg
     [not found]         ` <571FCBBD.9070200-NQWnxTmZq1alnMjI0IkVqw@public.gmane.org>
2016-04-26 20:14           ` Chuck Lever
2016-04-25 19:22   ` [PATCH v2 12/18] xprtrdma: Reset MRs in frwr_op_unmap_sync() Chuck Lever
     [not found]     ` <20160425192226.3566.56804.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 20:13       ` Sagi Grimberg
2016-04-25 19:22   ` [PATCH v2 13/18] xprtrdma: Refactor the FRWR recovery worker Chuck Lever
     [not found]     ` <20160425192234.3566.63698.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 20:16       ` Sagi Grimberg
     [not found]         ` <571FCC8C.5040503-NQWnxTmZq1alnMjI0IkVqw@public.gmane.org>
2016-04-26 20:30           ` Chuck Lever
     [not found]             ` <CAED2A23-CCB8-4C26-B212-2A4699D6B024-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2016-04-26 20:33               ` Sagi Grimberg
2016-04-25 19:22   ` [PATCH v2 14/18] xprtrdma: Move fr_xprt and fr_worker to struct rpcrdma_mw Chuck Lever
     [not found]     ` <20160425192242.3566.71335.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 20:18       ` Sagi Grimberg
2016-04-25 19:22   ` [PATCH v2 15/18] xprtrdma: Refactor __fmr_dma_unmap() Chuck Lever
     [not found]     ` <20160425192251.3566.35007.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 20:21       ` Sagi Grimberg
2016-04-25 19:22   ` [PATCH v2 16/18] xprtrdma: Add ro_unmap_safe memreg method Chuck Lever
     [not found]     ` <20160425192259.3566.58807.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 20:26       ` Sagi Grimberg
     [not found]         ` <571FCF03.4060406-NQWnxTmZq1alnMjI0IkVqw@public.gmane.org>
2016-04-26 20:44           ` Chuck Lever
     [not found]             ` <1B0B3E47-05C0-4134-B486-0869628B453C-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2016-04-27 15:59               ` Removing NFS/RDMA client support for PHYSICAL memory registration Chuck Lever
     [not found]                 ` <C0D8DC78-C6AB-4926-AF27-5D51E16FD447-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2016-04-28 10:59                   ` Sagi Grimberg
2016-04-25 19:23   ` [PATCH v2 17/18] xprtrdma: Remove ro_unmap() from all registration modes Chuck Lever
     [not found]     ` <20160425192307.3566.96703.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 20:29       ` Sagi Grimberg
     [not found]         ` <571FCF8E.1060304-NQWnxTmZq1alnMjI0IkVqw@public.gmane.org>
2016-04-26 20:46           ` Chuck Lever
     [not found]             ` <2AB2B747-1D14-4885-9CEA-23104AC2A379-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2016-04-26 20:50               ` Sagi Grimberg
2016-04-25 19:23   ` [PATCH v2 18/18] xprtrdma: Faster server reboot recovery Chuck Lever
     [not found]     ` <20160425192315.3566.4175.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2016-04-26 20:31       ` Sagi Grimberg
2016-04-26 14:13   ` [PATCH v2 00/18] NFS/RDMA client patches for v4.7 Steve Wise
     [not found]     ` <571F778B.5000306-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
2016-04-26 14:57       ` Chuck Lever
     [not found]         ` <7580EA21-0782-470B-94FF-2B872A92B089-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2016-04-26 16:45           ` Steve Wise [this message]
     [not found]             ` <571F9B0F.8050202-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
2016-04-26 17:15               ` Chuck Lever

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=571F9B0F.8050202@opengridcomputing.com \
    --to=swise-7bpotxp6k4+p2yhjcf5u+vpxobypeauw@public.gmane.org \
    --cc=chuck.lever-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org \
    --cc=linux-nfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).