public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH infiniband-diags] ibccconfig.c: Account for enhanced switch port 0 in SwitchPortCongestionSetting handling
@ 2015-01-09 15:17 Hal Rosenstock
       [not found] ` <54AFF110.9000005-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Hal Rosenstock @ 2015-01-09 15:17 UTC (permalink / raw)
  To: Ira Weiny
  Cc: linux-rdma (linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org),
	Chu, Al

Enhanced switch port 0 can support CC (indicated in CC ClassPortInfo:CapabilityMask.EnhancedPort0CC).

portnum 0 is a valid port number and offsets should be calculated based on port 0
rather than port 1.

Also, fix some error messages to indicate switch port congestion setting
rather then switch congestion setting failure.

Signed-off-by: Hal Rosenstock <hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
---
diff --git a/src/ibccconfig.c b/src/ibccconfig.c
index 11dfc07..22b16db 100644
--- a/src/ibccconfig.c
+++ b/src/ibccconfig.c
@@ -371,9 +371,6 @@ static char *switch_port_congestion_setting(ib_portid_t * dest, char **argv, int
 	if ((errstr = parseint(argv[5], &cong_parm_marking_rate, 0)))
 		return errstr;
 
-	if (!portnum)
-		return "invalid port number specified";
-
 	/* Figure out number of ports first */
 	if (!smp_query_via(data, dest, IB_ATTR_NODE_INFO, 0, 0, srcport))
 		return "node info config failed";
@@ -389,10 +386,10 @@ static char *switch_port_congestion_setting(ib_portid_t * dest, char **argv, int
 
 	/* We are modifying only 1 port, so get the current config */
 	if (!cc_query_status_via(payload, dest, IB_CC_ATTR_SWITCH_PORT_CONGESTION_SETTING,
-				 (portnum - 1) / 32, 0, NULL, srcport, cckey))
-		return "switch congestion setting query failed";
+				 portnum / 32, 0, NULL, srcport, cckey))
+		return "switch port congestion setting query failed";
 
-	ptr = payload + (((portnum % 32 - 1) * 4));
+	ptr = payload + (((portnum % 32) * 4));
 
 	mad_encode_field(ptr,
 			 IB_CC_SWITCH_PORT_CONGESTION_SETTING_ELEMENT_VALID_F,
@@ -415,8 +412,8 @@ static char *switch_port_congestion_setting(ib_portid_t * dest, char **argv, int
 			 &cong_parm_marking_rate);
 
 	if (!cc_config_status_via(payload, rcv, dest, IB_CC_ATTR_SWITCH_PORT_CONGESTION_SETTING,
-				  (portnum - 1) / 32, 0, NULL, srcport, cckey))
-		return "switch congestion setting config failed";
+				  portnum / 32, 0, NULL, srcport, cckey))
+		return "switch port congestion setting config failed";
 
 	return NULL;
 }
--
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] ibccconfig.c: Account for enhanced switch port 0 in SwitchPortCongestionSetting handling
       [not found] ` <54AFF110.9000005-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
@ 2015-01-09 15:46   ` Weiny, Ira
       [not found]     ` <2807E5FD2F6FDA4886F6618EAC48510E0CBF0137-8k97q/ur5Z2krb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
  2015-01-10  1:07   ` Weiny, Ira
  1 sibling, 1 reply; 4+ messages in thread
From: Weiny, Ira @ 2015-01-09 15:46 UTC (permalink / raw)
  To: Hal Rosenstock
  Cc: linux-rdma (linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org),
	Chu, Al

[off-list]

This replaces the first one?

> -----Original Message-----
> From: Hal Rosenstock [mailto:hal-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org]
> Sent: Friday, January 09, 2015 7:18 AM
> To: Weiny, Ira
> Cc: linux-rdma (linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org); Chu, Al
> Subject: [PATCH infiniband-diags] ibccconfig.c: Account for enhanced switch
> port 0 in SwitchPortCongestionSetting handling
> 
> Enhanced switch port 0 can support CC (indicated in CC
> ClassPortInfo:CapabilityMask.EnhancedPort0CC).
> 
> portnum 0 is a valid port number and offsets should be calculated based on
> port 0 rather than port 1.
> 
> Also, fix some error messages to indicate switch port congestion setting rather
> then switch congestion setting failure.
> 
> Signed-off-by: Hal Rosenstock <hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> ---
> diff --git a/src/ibccconfig.c b/src/ibccconfig.c index 11dfc07..22b16db 100644
> --- a/src/ibccconfig.c
> +++ b/src/ibccconfig.c
> @@ -371,9 +371,6 @@ static char
> *switch_port_congestion_setting(ib_portid_t * dest, char **argv, int
>  	if ((errstr = parseint(argv[5], &cong_parm_marking_rate, 0)))
>  		return errstr;
> 
> -	if (!portnum)
> -		return "invalid port number specified";
> -
>  	/* Figure out number of ports first */
>  	if (!smp_query_via(data, dest, IB_ATTR_NODE_INFO, 0, 0, srcport))
>  		return "node info config failed";
> @@ -389,10 +386,10 @@ static char
> *switch_port_congestion_setting(ib_portid_t * dest, char **argv, int
> 
>  	/* We are modifying only 1 port, so get the current config */
>  	if (!cc_query_status_via(payload, dest,
> IB_CC_ATTR_SWITCH_PORT_CONGESTION_SETTING,
> -				 (portnum - 1) / 32, 0, NULL, srcport, cckey))
> -		return "switch congestion setting query failed";
> +				 portnum / 32, 0, NULL, srcport, cckey))
> +		return "switch port congestion setting query failed";
> 
> -	ptr = payload + (((portnum % 32 - 1) * 4));
> +	ptr = payload + (((portnum % 32) * 4));
> 
>  	mad_encode_field(ptr,
> 
> IB_CC_SWITCH_PORT_CONGESTION_SETTING_ELEMENT_VALID_F,
> @@ -415,8 +412,8 @@ static char
> *switch_port_congestion_setting(ib_portid_t * dest, char **argv, int
>  			 &cong_parm_marking_rate);
> 
>  	if (!cc_config_status_via(payload, rcv, dest,
> IB_CC_ATTR_SWITCH_PORT_CONGESTION_SETTING,
> -				  (portnum - 1) / 32, 0, NULL, srcport, cckey))
> -		return "switch congestion setting config failed";
> +				  portnum / 32, 0, NULL, srcport, cckey))
> +		return "switch port congestion setting config failed";
> 
>  	return NULL;
>  }
--
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] ibccconfig.c: Account for enhanced switch port 0 in SwitchPortCongestionSetting handling
       [not found]     ` <2807E5FD2F6FDA4886F6618EAC48510E0CBF0137-8k97q/ur5Z2krb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
@ 2015-01-09 16:00       ` Hal Rosenstock
  0 siblings, 0 replies; 4+ messages in thread
From: Hal Rosenstock @ 2015-01-09 16:00 UTC (permalink / raw)
  To: Weiny, Ira
  Cc: linux-rdma (linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org),
	Chu, Al

On 1/9/2015 10:46 AM, Weiny, Ira wrote:
> [off-list]
> 
> This replaces the first one?

This is ibccconfig. Other was for ibccquery. Similar subjects but
separated by tool rather than one patch for both.

> 
>> -----Original Message-----
>> From: Hal Rosenstock [mailto:hal-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org]
>> Sent: Friday, January 09, 2015 7:18 AM
>> To: Weiny, Ira
>> Cc: linux-rdma (linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org); Chu, Al
>> Subject: [PATCH infiniband-diags] ibccconfig.c: Account for enhanced switch
>> port 0 in SwitchPortCongestionSetting handling
>>
>> Enhanced switch port 0 can support CC (indicated in CC
>> ClassPortInfo:CapabilityMask.EnhancedPort0CC).
>>
>> portnum 0 is a valid port number and offsets should be calculated based on
>> port 0 rather than port 1.
>>
>> Also, fix some error messages to indicate switch port congestion setting rather
>> then switch congestion setting failure.
>>
>> Signed-off-by: Hal Rosenstock <hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
>> ---
>> diff --git a/src/ibccconfig.c b/src/ibccconfig.c index 11dfc07..22b16db 100644
>> --- a/src/ibccconfig.c
>> +++ b/src/ibccconfig.c
>> @@ -371,9 +371,6 @@ static char
>> *switch_port_congestion_setting(ib_portid_t * dest, char **argv, int
>>  	if ((errstr = parseint(argv[5], &cong_parm_marking_rate, 0)))
>>  		return errstr;
>>
>> -	if (!portnum)
>> -		return "invalid port number specified";
>> -
>>  	/* Figure out number of ports first */
>>  	if (!smp_query_via(data, dest, IB_ATTR_NODE_INFO, 0, 0, srcport))
>>  		return "node info config failed";
>> @@ -389,10 +386,10 @@ static char
>> *switch_port_congestion_setting(ib_portid_t * dest, char **argv, int
>>
>>  	/* We are modifying only 1 port, so get the current config */
>>  	if (!cc_query_status_via(payload, dest,
>> IB_CC_ATTR_SWITCH_PORT_CONGESTION_SETTING,
>> -				 (portnum - 1) / 32, 0, NULL, srcport, cckey))
>> -		return "switch congestion setting query failed";
>> +				 portnum / 32, 0, NULL, srcport, cckey))
>> +		return "switch port congestion setting query failed";
>>
>> -	ptr = payload + (((portnum % 32 - 1) * 4));
>> +	ptr = payload + (((portnum % 32) * 4));
>>
>>  	mad_encode_field(ptr,
>>
>> IB_CC_SWITCH_PORT_CONGESTION_SETTING_ELEMENT_VALID_F,
>> @@ -415,8 +412,8 @@ static char
>> *switch_port_congestion_setting(ib_portid_t * dest, char **argv, int
>>  			 &cong_parm_marking_rate);
>>
>>  	if (!cc_config_status_via(payload, rcv, dest,
>> IB_CC_ATTR_SWITCH_PORT_CONGESTION_SETTING,
>> -				  (portnum - 1) / 32, 0, NULL, srcport, cckey))
>> -		return "switch congestion setting config failed";
>> +				  portnum / 32, 0, NULL, srcport, cckey))
>> +		return "switch port congestion setting config failed";
>>
>>  	return NULL;
>>  }
> 

--
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] ibccconfig.c: Account for enhanced switch port 0 in SwitchPortCongestionSetting handling
       [not found] ` <54AFF110.9000005-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
  2015-01-09 15:46   ` Weiny, Ira
@ 2015-01-10  1:07   ` Weiny, Ira
  1 sibling, 0 replies; 4+ messages in thread
From: Weiny, Ira @ 2015-01-10  1:07 UTC (permalink / raw)
  To: Hal Rosenstock
  Cc: linux-rdma (linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org),
	Chu, Al

> 
> Enhanced switch port 0 can support CC (indicated in CC
> ClassPortInfo:CapabilityMask.EnhancedPort0CC).
> 
> portnum 0 is a valid port number and offsets should be calculated based on
> port 0 rather than port 1.
> 
> Also, fix some error messages to indicate switch port congestion setting rather
> then switch congestion setting failure.
> 
> Signed-off-by: Hal Rosenstock <hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>

Thanks applied.
Ira

> ---
> diff --git a/src/ibccconfig.c b/src/ibccconfig.c index 11dfc07..22b16db 100644
> --- a/src/ibccconfig.c
> +++ b/src/ibccconfig.c
> @@ -371,9 +371,6 @@ static char
> *switch_port_congestion_setting(ib_portid_t * dest, char **argv, int
>  	if ((errstr = parseint(argv[5], &cong_parm_marking_rate, 0)))
>  		return errstr;
> 
> -	if (!portnum)
> -		return "invalid port number specified";
> -
>  	/* Figure out number of ports first */
>  	if (!smp_query_via(data, dest, IB_ATTR_NODE_INFO, 0, 0, srcport))
>  		return "node info config failed";
> @@ -389,10 +386,10 @@ static char
> *switch_port_congestion_setting(ib_portid_t * dest, char **argv, int
> 
>  	/* We are modifying only 1 port, so get the current config */
>  	if (!cc_query_status_via(payload, dest,
> IB_CC_ATTR_SWITCH_PORT_CONGESTION_SETTING,
> -				 (portnum - 1) / 32, 0, NULL, srcport, cckey))
> -		return "switch congestion setting query failed";
> +				 portnum / 32, 0, NULL, srcport, cckey))
> +		return "switch port congestion setting query failed";
> 
> -	ptr = payload + (((portnum % 32 - 1) * 4));
> +	ptr = payload + (((portnum % 32) * 4));
> 
>  	mad_encode_field(ptr,
> 
> IB_CC_SWITCH_PORT_CONGESTION_SETTING_ELEMENT_VALID_F,
> @@ -415,8 +412,8 @@ static char
> *switch_port_congestion_setting(ib_portid_t * dest, char **argv, int
>  			 &cong_parm_marking_rate);
> 
>  	if (!cc_config_status_via(payload, rcv, dest,
> IB_CC_ATTR_SWITCH_PORT_CONGESTION_SETTING,
> -				  (portnum - 1) / 32, 0, NULL, srcport, cckey))
> -		return "switch congestion setting config failed";
> +				  portnum / 32, 0, NULL, srcport, cckey))
> +		return "switch port congestion setting config failed";
> 
>  	return NULL;
>  }
--
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:[~2015-01-10  1:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-09 15:17 [PATCH infiniband-diags] ibccconfig.c: Account for enhanced switch port 0 in SwitchPortCongestionSetting handling Hal Rosenstock
     [not found] ` <54AFF110.9000005-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2015-01-09 15:46   ` Weiny, Ira
     [not found]     ` <2807E5FD2F6FDA4886F6618EAC48510E0CBF0137-8k97q/ur5Z2krb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2015-01-09 16:00       ` Hal Rosenstock
2015-01-10  1:07   ` Weiny, Ira

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