public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
From: Hal Rosenstock <hal-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
To: Ira Weiny <weiny2-i2BcT+NCU+M@public.gmane.org>
Cc: "linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH] infiniband-diags: Fix SA error reporting for common MAD errors
Date: Wed, 10 Oct 2012 10:28:50 -0400	[thread overview]
Message-ID: <50758622.3030607@dev.mellanox.co.il> (raw)
In-Reply-To: <20120921150259.5fb75a794fae33ac60e5f0d9-i2BcT+NCU+M@public.gmane.org>

On 9/21/2012 6:02 PM, Ira Weiny wrote:
> 
> 
> Signed-off-by: Ira Weiny <weiny2-i2BcT+NCU+M@public.gmane.org>
> ---
>  src/ibdiag_sa.c |   30 +++++++++++++++++++++++++++---
>  1 files changed, 27 insertions(+), 3 deletions(-)
> 
> diff --git a/src/ibdiag_sa.c b/src/ibdiag_sa.c
> index 2b84bfa..2a9f008 100644
> --- a/src/ibdiag_sa.c
> +++ b/src/ibdiag_sa.c
> @@ -192,19 +192,43 @@ static inline const char *ib_sa_err_str(IN uint8_t status)
>  	return (ib_sa_error_str[status]);
>  }
>  
> +static const char *ib_mad_inv_field_str[] = {
> +	"MAD No invalid fields",
> +	"MAD Bad version",
> +	"MAD Method specified is not supported",
> +	"MAD Method/Attribute combination is not supported",
> +	"MAD Reserved",
> +	"MAD Reserved",
> +	"MAD Reserved",
> +	"MAD fields or attribute modifier; invalid value"

Perhaps "MAD Invalid value in field(s) of Attribute or Attribute Modifier" ?

-- Hal

> +	"MAD UNKNOWN ERROR"
> +};
> +#define MAD_ERR_UNKNOWN (ARR_SIZE(ib_mad_inv_field_str) - 1)
> +
> +static inline const char *ib_mad_inv_field_err_str(IN uint8_t f)
> +{
> +	if (f > MAD_ERR_UNKNOWN)
> +		f = MAD_ERR_UNKNOWN;
> +	return (ib_mad_inv_field_str[f]);
> +}
> +
>  void sa_report_err(int status)
>  {
>  	int st = status & 0xff;
> -	char sm_err_str[64] = { 0 };
> +	char mad_err_str[64] = { 0 };
>  	char sa_err_str[64] = { 0 };
>  
>  	if (st)
> -		sprintf(sm_err_str, " SM(%s)", ib_get_err_str(st));
> +		sprintf(mad_err_str, " (%s; %s; %s)",
> +			(st & 0x1) ? "BUSY" : "",
> +			(st & 0x2) ? "Redirection Required" : "",
> +			ib_mad_inv_field_err_str(st>>2));
> +
>  
>  	st = status >> 8;
>  	if (st)
>  		sprintf(sa_err_str, " SA(%s)", ib_sa_err_str((uint8_t) st));
>  
>  	fprintf(stderr, "ERROR: Query result returned 0x%04x, %s%s\n",
> -		status, sm_err_str, sa_err_str);
> +		status, mad_err_str, sa_err_str);
>  }

--
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:[~2012-10-10 14:28 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-21 22:02 [PATCH] infiniband-diags: Fix SA error reporting for common MAD errors Ira Weiny
     [not found] ` <20120921150259.5fb75a794fae33ac60e5f0d9-i2BcT+NCU+M@public.gmane.org>
2012-10-10 14:28   ` Hal Rosenstock [this message]
     [not found]     ` <50758622.3030607-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2012-10-12 16:34       ` Ira Weiny

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=50758622.3030607@dev.mellanox.co.il \
    --to=hal-ldsdmyg8hgv8yrgs2mwiifqbs+8scbdb@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=weiny2-i2BcT+NCU+M@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