public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] infiniband-diags/scripts/ibcheckerrs.in: emulate all ports if necessary.
@ 2010-05-06  2:47 Ira Weiny
       [not found] ` <20100505194720.6f9d434c.weiny2-i2BcT+NCU+M@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Ira Weiny @ 2010-05-06  2:47 UTC (permalink / raw)
  To: Sasha Khapyorsky; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org


From: Ira Weiny <weiny2-i2BcT+NCU+M@public.gmane.org>
Date: Wed, 5 May 2010 19:49:37 -0700
Subject: [PATCH] infiniband-diags/scripts/ibcheckerrs.in: emulate all ports if necessary.


Signed-off-by: Ira Weiny <weiny2-i2BcT+NCU+M@public.gmane.org>
---
 infiniband-diags/scripts/ibcheckerrs.in |    2 +-
 infiniband-diags/src/perfquery.c        |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/infiniband-diags/scripts/ibcheckerrs.in b/infiniband-diags/scripts/ibcheckerrs.in
index 305379a..f4eb451 100644
--- a/infiniband-diags/scripts/ibcheckerrs.in
+++ b/infiniband-diags/scripts/ibcheckerrs.in
@@ -153,7 +153,7 @@ fi
 
 nodename=`$IBPATH/smpquery $ca_info nodedesc $lid | sed -e "s/^Node Description:\.*\(.*\)/\1/"`
 
-text="`eval $IBPATH/perfquery $ca_info $lid $portnum`"
+text="`eval $IBPATH/perfquery -a $ca_info $lid $portnum`"
 rv=$?
 if echo "$text" | awk -v mono=$bw -v brief=$brief -F '[.:]*' '
 function blue(s)
diff --git a/infiniband-diags/src/perfquery.c b/infiniband-diags/src/perfquery.c
index 00ebfff..5d3b606 100644
--- a/infiniband-diags/src/perfquery.c
+++ b/infiniband-diags/src/perfquery.c
@@ -525,11 +525,11 @@ int main(int argc, char **argv)
 	/* ClassPortInfo should be supported as part of libibmad */
 	memcpy(&cap_mask, pc + 2, sizeof(cap_mask));	/* CapabilityMask */
 	cap_mask = ntohs(cap_mask);
-	if (!(cap_mask & 0x100)) {	/* bit 8 is AllPortSelect */
-		if (!all_ports && port == ALL_PORTS)
-			IBERROR("AllPortSelect not supported");
+	if (port == ALL_PORTS && !(cap_mask & 0x100)) {	/* bit 8 is AllPortSelect */
 		if (all_ports)
 			all_ports_loop = 1;
+		else
+			IBERROR("AllPortSelect not supported");
 	}
 
 	if (xmt_sl) {
-- 
1.5.4.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] 3+ messages in thread

* Re: [PATCH] infiniband-diags/scripts/ibcheckerrs.in: emulate all ports if necessary.
       [not found] ` <20100505194720.6f9d434c.weiny2-i2BcT+NCU+M@public.gmane.org>
@ 2010-05-06 16:18   ` Ira Weiny
       [not found]     ` <20100506091829.dd275edf.weiny2-i2BcT+NCU+M@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Ira Weiny @ 2010-05-06 16:18 UTC (permalink / raw)
  To: Sasha Khapyorsky, Robert Woodruff
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Michael Heinz,
	Openfabrics-ewg-0P3JtQMG0aQdnm+yROfE0A

Upon thinking about this a bit more, and seeing Mikes patch.  I think that the
patch which Mike sent some time ago is a better fix.  This will work fine for
ibcheckerrs.  However ibcheckerrors will run AllPortSelect and then go on to
query all the ports individually.  The patch below will cause a double read
for each port which will kill ibcheckerrors performance on a large cluster.

Sasha, what is the status of Mikes patch?

Ira

On Wed, 5 May 2010 19:47:20 -0700
Ira Weiny <weiny2-i2BcT+NCU+M@public.gmane.org> wrote:

> 
> From: Ira Weiny <weiny2-i2BcT+NCU+M@public.gmane.org>
> Date: Wed, 5 May 2010 19:49:37 -0700
> Subject: [PATCH] infiniband-diags/scripts/ibcheckerrs.in: emulate all ports if necessary.
> 
> 
> Signed-off-by: Ira Weiny <weiny2-i2BcT+NCU+M@public.gmane.org>
> ---
>  infiniband-diags/scripts/ibcheckerrs.in |    2 +-
>  infiniband-diags/src/perfquery.c        |    6 +++---
>  2 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/infiniband-diags/scripts/ibcheckerrs.in b/infiniband-diags/scripts/ibcheckerrs.in
> index 305379a..f4eb451 100644
> --- a/infiniband-diags/scripts/ibcheckerrs.in
> +++ b/infiniband-diags/scripts/ibcheckerrs.in
> @@ -153,7 +153,7 @@ fi
>  
>  nodename=`$IBPATH/smpquery $ca_info nodedesc $lid | sed -e "s/^Node Description:\.*\(.*\)/\1/"`
>  
> -text="`eval $IBPATH/perfquery $ca_info $lid $portnum`"
> +text="`eval $IBPATH/perfquery -a $ca_info $lid $portnum`"
>  rv=$?
>  if echo "$text" | awk -v mono=$bw -v brief=$brief -F '[.:]*' '
>  function blue(s)
> diff --git a/infiniband-diags/src/perfquery.c b/infiniband-diags/src/perfquery.c
> index 00ebfff..5d3b606 100644
> --- a/infiniband-diags/src/perfquery.c
> +++ b/infiniband-diags/src/perfquery.c
> @@ -525,11 +525,11 @@ int main(int argc, char **argv)
>  	/* ClassPortInfo should be supported as part of libibmad */
>  	memcpy(&cap_mask, pc + 2, sizeof(cap_mask));	/* CapabilityMask */
>  	cap_mask = ntohs(cap_mask);
> -	if (!(cap_mask & 0x100)) {	/* bit 8 is AllPortSelect */
> -		if (!all_ports && port == ALL_PORTS)
> -			IBERROR("AllPortSelect not supported");
> +	if (port == ALL_PORTS && !(cap_mask & 0x100)) {	/* bit 8 is AllPortSelect */
>  		if (all_ports)
>  			all_ports_loop = 1;
> +		else
> +			IBERROR("AllPortSelect not supported");
>  	}
>  
>  	if (xmt_sl) {
> -- 
> 1.5.4.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
> 


-- 
Ira Weiny <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] 3+ messages in thread

* Re: [PATCH] infiniband-diags/scripts/ibcheckerrs.in: emulate all ports if necessary.
       [not found]     ` <20100506091829.dd275edf.weiny2-i2BcT+NCU+M@public.gmane.org>
@ 2010-05-06 21:13       ` Sasha Khapyorsky
  0 siblings, 0 replies; 3+ messages in thread
From: Sasha Khapyorsky @ 2010-05-06 21:13 UTC (permalink / raw)
  To: Ira Weiny
  Cc: Robert Woodruff,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Michael Heinz,
	Openfabrics-ewg-0P3JtQMG0aQdnm+yROfE0A

On 09:18 Thu 06 May     , Ira Weiny wrote:
> Upon thinking about this a bit more, and seeing Mikes patch.  I think that the
> patch which Mike sent some time ago is a better fix.  This will work fine for
> ibcheckerrs.  However ibcheckerrors will run AllPortSelect and then go on to
> query all the ports individually.  The patch below will cause a double read
> for each port which will kill ibcheckerrors performance on a large cluster.
> 
> Sasha, what is the status of Mikes patch?

Applied now.

Sasha
--
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] 3+ messages in thread

end of thread, other threads:[~2010-05-06 21:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-06  2:47 [PATCH] infiniband-diags/scripts/ibcheckerrs.in: emulate all ports if necessary Ira Weiny
     [not found] ` <20100505194720.6f9d434c.weiny2-i2BcT+NCU+M@public.gmane.org>
2010-05-06 16:18   ` Ira Weiny
     [not found]     ` <20100506091829.dd275edf.weiny2-i2BcT+NCU+M@public.gmane.org>
2010-05-06 21:13       ` Sasha Khapyorsky

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox