From: Hal Rosenstock <hal-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
To: Swapna Thete <swapna.thete-h88ZbnxC6KDQT0dZR+AlfA@public.gmane.org>
Cc: roland-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH 2/2] IB/mad: Return unsupported for MADs as appropriate
Date: Tue, 31 Jan 2012 09:58:21 -0500 [thread overview]
Message-ID: <4F28018D.8060201@dev.mellanox.co.il> (raw)
In-Reply-To: <20120131081153.9009.16378.stgit-hIFRcJ1SNwcXGO8/Qfapyjg/wwJxntczYPYVAmT7z5s@public.gmane.org>
On 1/31/2012 3:11 AM, Swapna Thete wrote:
> Setup a response with appropriate error status and send
> it for the MADs that are not supported by a specific
> class/version.
>
> Signed-off-by: Swapna Thete <swapna.thete-h88ZbnxC6KDQT0dZR+AlfA@public.gmane.org>
Reviewed-by: Hal Rosenstock <hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> ---
> drivers/infiniband/core/mad.c | 22 ++++++++++++++++++++++
> 1 files changed, 22 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/infiniband/core/mad.c b/drivers/infiniband/core/mad.c
> index 2fe428b..c1c7617 100644
> --- a/drivers/infiniband/core/mad.c
> +++ b/drivers/infiniband/core/mad.c
> @@ -1842,6 +1842,25 @@ static void ib_mad_complete_recv(struct ib_mad_agent_private *mad_agent_priv,
> }
> }
>
> +static int generate_unmatched_resp(struct ib_mad_private *recv,
> + struct ib_mad_private *response)
> +{
> + int matched = 0;
> +
> + if ((recv->mad.mad.mad_hdr.method == IB_MGMT_METHOD_GET) ||
> + (recv->mad.mad.mad_hdr.method == IB_MGMT_METHOD_SET)) {
> + memcpy(response, recv, sizeof(*response));
When returning bad MAD status, the entire MAD need not be copied. Just a
minor inefficiency.
-- Hal
> + response->header.recv_wc.wc = &response->header.wc;
> + response->header.recv_wc.recv_buf.mad = &response->mad.mad;
> + response->header.recv_wc.recv_buf.grh = &response->grh;
> + response->mad.mad.mad_hdr.method = IB_MGMT_METHOD_GET_RESP;
> + response->mad.mad.mad_hdr.status =
> + __be16_to_cpu(IB_MGMT_MAD_STATUS_UNSUPPORTED_METHOD_ATTRIB);
> + matched = 1;
> + }
> +
> + return matched;
> +}
> static void ib_mad_recv_done_handler(struct ib_mad_port_private *port_priv,
> struct ib_wc *wc)
> {
> @@ -1963,6 +1982,9 @@ local:
> * or via recv_handler in ib_mad_complete_recv()
> */
> recv = NULL;
> + } else if (generate_unmatched_resp(recv, response)) {
> + agent_send_response(&response->mad.mad, &recv->grh, wc,
> + port_priv->device, port_num, qp_info->qp->qp_num);
> }
>
> out:
>
>
> --
> 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
>
--
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
next prev parent reply other threads:[~2012-01-31 14:58 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-31 8:11 [PATCH 0/2] Setup response for MADs as appropriate Swapna Thete
[not found] ` <20120131081138.9009.33668.stgit-hIFRcJ1SNwcXGO8/Qfapyjg/wwJxntczYPYVAmT7z5s@public.gmane.org>
2012-01-31 8:11 ` [PATCH 1/2] IB/mad: Add MAD error codes per IBTA spec Swapna Thete
2012-01-31 8:11 ` [PATCH 2/2] IB/mad: Return unsupported for MADs as appropriate Swapna Thete
[not found] ` <20120131081153.9009.16378.stgit-hIFRcJ1SNwcXGO8/Qfapyjg/wwJxntczYPYVAmT7z5s@public.gmane.org>
2012-01-31 14:58 ` Hal Rosenstock [this message]
-- strict thread matches above, loose matches on Subject: below --
2012-01-18 8:42 [PATCH 0/2] Setup response " Swapna Thete
[not found] ` <20120118084255.18560.40844.stgit-hIFRcJ1SNwcXGO8/Qfapyjg/wwJxntczYPYVAmT7z5s@public.gmane.org>
2012-01-18 8:43 ` [PATCH 2/2] IB/mad: Return unsupported " Swapna Thete
[not found] ` <20120118084311.18560.22509.stgit-hIFRcJ1SNwcXGO8/Qfapyjg/wwJxntczYPYVAmT7z5s@public.gmane.org>
2012-01-18 10:04 ` Or Gerlitz
[not found] ` <4F169940.5090007-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2012-01-18 10:14 ` Swapna Thete
[not found] ` <4C2744E8AD2982428C5BFE523DF8CDCB5CD590F65E-amwN6d8PyQWXx9kJd3VG2h2eb7JE58TQ@public.gmane.org>
2012-01-18 16:52 ` Roland Dreier
[not found] ` <CAL1RGDUh1AEMdok69RJP1cTchvCW7C7HJFTmYm=kUNu7hWA_5Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-01-18 17:20 ` Hefty, Sean
[not found] ` <1828884A29C6694DAF28B7E6B8A823732DC00DEE-P5GAC/sN6hmkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2012-01-18 18:56 ` Jason Gunthorpe
[not found] ` <20120118185620.GJ2892-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2012-01-19 8:13 ` Jack Morgenstein
2012-01-18 18:06 ` Hefty, Sean
[not found] ` <1828884A29C6694DAF28B7E6B8A823732DC03E16-P5GAC/sN6hmkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2012-01-18 19:02 ` Jason Gunthorpe
[not found] ` <20120118190214.GK2892-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2012-01-18 19:06 ` Hefty, Sean
[not found] ` <1828884A29C6694DAF28B7E6B8A823732DC04EDB-P5GAC/sN6hmkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2012-01-18 19:50 ` Jason Gunthorpe
2012-01-18 19:30 ` Hefty, Sean
[not found] ` <1828884A29C6694DAF28B7E6B8A823732DC04EFB-P5GAC/sN6hmkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2012-01-18 21:19 ` Jason Gunthorpe
[not found] ` <20120118211916.GM2892-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2012-01-19 12:34 ` Swapna Thete
2012-01-19 12:35 ` Swapna Thete
2012-01-18 22:30 ` Hal Rosenstock
[not found] ` <4F1747F2.3020308-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2012-01-19 12:58 ` Hal Rosenstock
[not found] ` <4F181361.4050505-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2012-01-20 12:12 ` Swapna Thete
[not found] ` <4C2744E8AD2982428C5BFE523DF8CDCB5CD590F82C-amwN6d8PyQWXx9kJd3VG2h2eb7JE58TQ@public.gmane.org>
2012-01-20 13:56 ` Hal Rosenstock
2012-01-20 15:27 ` Hefty, Sean
[not found] ` <1828884A29C6694DAF28B7E6B8A823732DC0E524-P5GAC/sN6hmkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2012-01-20 20:07 ` Hal Rosenstock
2012-01-24 12:32 ` Swapna Thete
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=4F28018D.8060201@dev.mellanox.co.il \
--to=hal-ldsdmyg8hgv8yrgs2mwiifqbs+8scbdb@public.gmane.org \
--cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=roland-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=swapna.thete-h88ZbnxC6KDQT0dZR+AlfA@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.