public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
From: Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
To: Jarod Wilson <jarod-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: Gil Rockah <gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>,
	Jason Gunthorpe
	<jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
Subject: Re: [PATCH perftest] perftest: make inline send on ocrdma work better
Date: Fri, 19 Aug 2016 15:45:57 -0500	[thread overview]
Message-ID: <85f0801f-a78f-7091-7ae2-5febde6b19b6@opengridcomputing.com> (raw)
In-Reply-To: <1471633611-41155-1-git-send-email-jarod-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>

On 8/19/2016 2:06 PM, Jarod Wilson wrote:
> The ocrdma driver supports a maximum inline send size of 224, while the
> current code sets this size to 236. Add an ocrdma-specific check when
> setting max inline size to eliminate the need to always pass -I 224 when
> running ib_send_lat on ocrdma hardware.

<soap box>
We really should fix the RDMA uAPI to allow querying the device to get 
the max inline size for various SQ WRs (it might vary for send vs write, 
for example), instead of requiring applications to guess or hardcoding 
benchmarks based on device name...
</soap box>

> CC: Gil Rockah <gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> Signed-off-by: Jarod Wilson <jarod-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> ---
>   src/perftest_parameters.c | 8 ++++++++
>   src/perftest_parameters.h | 3 +++
>   2 files changed, 11 insertions(+)
>
> diff --git a/src/perftest_parameters.c b/src/perftest_parameters.c
> index 3ffddd7..65ce731 100755
> --- a/src/perftest_parameters.c
> +++ b/src/perftest_parameters.c
> @@ -1465,6 +1465,14 @@ static void ctx_set_max_inline(struct ibv_context *context,struct perftest_param
>   		}
>   	}
>   
> +	if (strncmp("ocrdma", user_param->ib_devname, 6) == 0) {
> +		if (user_param->inline_size > DEF_INLINE_SEND_MAX_OCRDMA) {
> +			fprintf(stdout, "lowering inline size to ocrdma supported maximum of %d\n",
> +				DEF_INLINE_SEND_MAX_OCRDMA);
> +			user_param->inline_size = DEF_INLINE_SEND_MAX_OCRDMA;
> +		}
> +	}
> +
>   	return;
>   }
>   /******************************************************************************
> diff --git a/src/perftest_parameters.h b/src/perftest_parameters.h
> index 1122792..a566f42 100755
> --- a/src/perftest_parameters.h
> +++ b/src/perftest_parameters.h
> @@ -133,6 +133,9 @@
>   #define DEF_INLINE_SEND_UD (188)
>   #define DEF_INLINE_DC (150)
>   
> +/* OCRDMA has an inline max of 224 */
> +#define DEF_INLINE_SEND_MAX_OCRDMA (224)
> +
>   /* Max and Min allowed values for perftest parameters. */
>   #define MIN_TOS		(0)
>   #define MAX_TOS		(256)


--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" 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-08-19 20:45 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-19 19:06 [PATCH perftest] perftest: make inline send on ocrdma work better Jarod Wilson
     [not found] ` <1471633611-41155-1-git-send-email-jarod-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-08-19 20:45   ` Steve Wise [this message]
     [not found]     ` <85f0801f-a78f-7091-7ae2-5febde6b19b6-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
2016-08-19 21:12       ` Jarod Wilson
     [not found]         ` <20160819211242.GY1916-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-08-19 21:31           ` Steve Wise

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=85f0801f-a78f-7091-7ae2-5febde6b19b6@opengridcomputing.com \
    --to=swise-7bpotxp6k4+p2yhjcf5u+vpxobypeauw@public.gmane.org \
    --cc=gilr-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    --cc=jarod-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@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