All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] infiniband-diags/vendstat: Fixed general info query
@ 2011-04-28  9:09 Eli Dorfman
       [not found] ` <4DB92ED0.4050907-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Eli Dorfman @ 2011-04-28  9:09 UTC (permalink / raw)
  To: Ira Weiny; +Cc: linux-rdma

Fixed general info query

There was no output when query succeeded

Signed-off-by: Eli Dorfman <elido-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
---
 src/vendstat.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/src/vendstat.c b/src/vendstat.c
index 92a90c8..8dbd1ee 100644
--- a/src/vendstat.c
+++ b/src/vendstat.c
@@ -375,6 +375,7 @@ int main(int argc, char **argv)
 	gi = (is3_general_info_t *) & buf;
 	if (do_vendor(&portid, srcport, IB_MLX_VENDOR_CLASS, IB_MAD_METHOD_GET,
 		      IB_MLX_IS3_GENERAL_INFO, 0, gi))
+		IBERROR("generalinfo query");
 
 	if (general_info) {
 		/* dump IS3 or IS4 general info here */
-- 
1.5.5

--
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

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] infiniband-diags/vendstat: Fixed general info query
       [not found] ` <4DB92ED0.4050907-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
@ 2011-04-28 14:51   ` Hal Rosenstock
       [not found]     ` <4DB97EDA.6030104-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Hal Rosenstock @ 2011-04-28 14:51 UTC (permalink / raw)
  To: Eli Dorfman; +Cc: Ira Weiny, linux-rdma

On 4/28/2011 5:09 AM, Eli Dorfman wrote:
> Fixed general info query
> 
> There was no output when query succeeded

Do you mean failed ?

-- Hal

> 
> Signed-off-by: Eli Dorfman <elido-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> ---
>  src/vendstat.c |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/src/vendstat.c b/src/vendstat.c
> index 92a90c8..8dbd1ee 100644
> --- a/src/vendstat.c
> +++ b/src/vendstat.c
> @@ -375,6 +375,7 @@ int main(int argc, char **argv)
>  	gi = (is3_general_info_t *) & buf;
>  	if (do_vendor(&portid, srcport, IB_MLX_VENDOR_CLASS, IB_MAD_METHOD_GET,
>  		      IB_MLX_IS3_GENERAL_INFO, 0, gi))
> +		IBERROR("generalinfo query");
>  
>  	if (general_info) {
>  		/* dump IS3 or IS4 general info here */

--
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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] infiniband-diags/vendstat: Fixed general info query
       [not found]     ` <4DB97EDA.6030104-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
@ 2011-05-01  6:28       ` Eli Dorfman
       [not found]         ` <4DBCFDA9.4040903-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Eli Dorfman @ 2011-05-01  6:28 UTC (permalink / raw)
  To: Hal Rosenstock; +Cc: Ira Weiny, linux-rdma

On 04/28/2011 05:51 PM, Hal Rosenstock wrote:
> On 4/28/2011 5:09 AM, Eli Dorfman wrote:
>> Fixed general info query
>>
>> There was no output when query succeeded
> 
> Do you mean failed ?

No I meant succeeded.
Since the IBERROR was missing the print of GeneralInfo is skipped.
If it fails then the "if (general_info)" code is reached but it will print garbage.

Eli

> 
> -- Hal
> 
>>
>> Signed-off-by: Eli Dorfman <elido-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
>> ---
>>  src/vendstat.c |    1 +
>>  1 files changed, 1 insertions(+), 0 deletions(-)
>>
>> diff --git a/src/vendstat.c b/src/vendstat.c
>> index 92a90c8..8dbd1ee 100644
>> --- a/src/vendstat.c
>> +++ b/src/vendstat.c
>> @@ -375,6 +375,7 @@ int main(int argc, char **argv)
>>  	gi = (is3_general_info_t *) & buf;
>>  	if (do_vendor(&portid, srcport, IB_MLX_VENDOR_CLASS, IB_MAD_METHOD_GET,
>>  		      IB_MLX_IS3_GENERAL_INFO, 0, gi))
>> +		IBERROR("generalinfo query");
>>  
>>  	if (general_info) {
>>  		/* dump IS3 or IS4 general info here */
> 

--
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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] infiniband-diags/vendstat: Fixed general info query
       [not found]         ` <4DBCFDA9.4040903-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
@ 2011-05-02 18:16           ` Ira Weiny
  0 siblings, 0 replies; 4+ messages in thread
From: Ira Weiny @ 2011-05-02 18:16 UTC (permalink / raw)
  To: Eli Dorfman; +Cc: Hal Rosenstock, linux-rdma

On Sat, 30 Apr 2011 23:28:57 -0700
Eli Dorfman <elido-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org> wrote:

> On 04/28/2011 05:51 PM, Hal Rosenstock wrote:
> > On 4/28/2011 5:09 AM, Eli Dorfman wrote:
> >> Fixed general info query
> >>
> >> There was no output when query succeeded
> > 
> > Do you mean failed ?
> 
> No I meant succeeded.
> Since the IBERROR was missing the print of GeneralInfo is skipped.
> If it fails then the "if (general_info)" code is reached but it will print garbage.

Thanks applied,
Ira

> 
> Eli
> 
> > 
> > -- Hal
> > 
> >>
> >> Signed-off-by: Eli Dorfman <elido-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> >> ---
> >>  src/vendstat.c |    1 +
> >>  1 files changed, 1 insertions(+), 0 deletions(-)
> >>
> >> diff --git a/src/vendstat.c b/src/vendstat.c
> >> index 92a90c8..8dbd1ee 100644
> >> --- a/src/vendstat.c
> >> +++ b/src/vendstat.c
> >> @@ -375,6 +375,7 @@ int main(int argc, char **argv)
> >>  	gi = (is3_general_info_t *) & buf;
> >>  	if (do_vendor(&portid, srcport, IB_MLX_VENDOR_CLASS, IB_MAD_METHOD_GET,
> >>  		      IB_MLX_IS3_GENERAL_INFO, 0, gi))
> >> +		IBERROR("generalinfo query");
> >>  
> >>  	if (general_info) {
> >>  		/* dump IS3 or IS4 general info here */
> > 
> 


-- 
Ira Weiny
Math Programmer/Computer Scientist
Lawrence Livermore National Lab
925-423-8008
weiny2-i2BcT+NCU+M@public.gmane.org
--
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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-05-02 18:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-28  9:09 [PATCH] infiniband-diags/vendstat: Fixed general info query Eli Dorfman
     [not found] ` <4DB92ED0.4050907-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2011-04-28 14:51   ` Hal Rosenstock
     [not found]     ` <4DB97EDA.6030104-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2011-05-01  6:28       ` Eli Dorfman
     [not found]         ` <4DBCFDA9.4040903-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2011-05-02 18:16           ` Ira Weiny

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.