public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] opensm/osm_pkey_mgr: clean partition enforcement on inter-switch links
@ 2011-05-03  8:02 Eli Dorfman
       [not found] ` <4DBFB67F.2090400-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Eli Dorfman @ 2011-05-03  8:02 UTC (permalink / raw)
  To: Alex Netes; +Cc: linux-rdma, Hal Rosenstock

clean partition enforcement on inter-switch links

after connectivity change from switch-host to switch-switch the
partition enforcement bits were not cleared on the port.
since the pkey table is not set on inter-switch links,
packets with pkey other than default are dropped.

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

diff --git a/opensm/osm_pkey_mgr.c b/opensm/osm_pkey_mgr.c
index f6bc9d1..b135cf9 100644
--- a/opensm/osm_pkey_mgr.c
+++ b/opensm/osm_pkey_mgr.c
@@ -507,6 +507,10 @@ int osm_pkey_mgr_process(IN osm_opensm_t * p_osm)
 	cl_map_item_t *p_next;
 	osm_prtn_t *p_prtn;
 	osm_port_t *p_port;
+	osm_switch_t *p_sw;
+	osm_physp_t *p_physp;
+	osm_node_t *p_remote_node;
+	uint8_t i;
 	int ret = 0;
 
 	CL_ASSERT(p_osm);
@@ -550,6 +554,26 @@ int osm_pkey_mgr_process(IN osm_opensm_t * p_osm)
 			ret = -1;
 	}
 
+	/* clear partition enforcement on inter-switch links */
+	p_tbl = &p_osm->subn.sw_guid_tbl;
+	p_next = cl_qmap_head(p_tbl);
+	while (p_next != cl_qmap_end(p_tbl)) {
+		p_sw = (osm_switch_t * *) p_next;
+		p_next = cl_qmap_next(p_next);
+		for (i = 1; i < p_sw->num_ports; i++) {
+			p_physp = osm_node_get_physp_ptr(p_sw->p_node, i);
+			if (p_physp && p_physp->p_remote_physp)
+				p_remote_node = p_physp->p_remote_physp->p_node;
+			else
+				continue;
+			if (osm_node_get_type(p_remote_node) != IB_NODE_TYPE_SWITCH)
+				continue;
+
+			/* clear partition enforcement */
+			if (pkey_mgr_enforce_partition(&p_osm->log, &p_osm->sm, p_physp, FALSE))
+				ret = -1;
+		}
+	}
 _err:
 	CL_PLOCK_RELEASE(&p_osm->lock);
 	OSM_LOG_EXIT(&p_osm->log);
-- 
1.7.4.1

--
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] opensm/osm_pkey_mgr: clean partition enforcement on inter-switch links
       [not found] ` <4DBFB67F.2090400-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
@ 2011-05-03 15:48   ` Alex Netes
       [not found]     ` <20110503154847.GA2303-iQai9MGU/dyyaiaB+Ve85laTQe2KTcn/@public.gmane.org>
  2011-05-15  6:52   ` Alex Netes
  1 sibling, 1 reply; 4+ messages in thread
From: Alex Netes @ 2011-05-03 15:48 UTC (permalink / raw)
  To: Eli Dorfman; +Cc: linux-rdma

Hi Eli,

On 11:02 Tue 03 May     , Eli Dorfman wrote:
> clean partition enforcement on inter-switch links
> 
> after connectivity change from switch-host to switch-switch the
> partition enforcement bits were not cleared on the port.
> since the pkey table is not set on inter-switch links,
> packets with pkey other than default are dropped.
> 
> Signed-off-by: Eli Dorfman <elido-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> ---
>  opensm/osm_pkey_mgr.c |   24 ++++++++++++++++++++++++
>  1 files changed, 24 insertions(+), 0 deletions(-)
> 
> diff --git a/opensm/osm_pkey_mgr.c b/opensm/osm_pkey_mgr.c
> index f6bc9d1..b135cf9 100644
> --- a/opensm/osm_pkey_mgr.c
> +++ b/opensm/osm_pkey_mgr.c
> @@ -507,6 +507,10 @@ int osm_pkey_mgr_process(IN osm_opensm_t * p_osm)
>  	cl_map_item_t *p_next;
>  	osm_prtn_t *p_prtn;
>  	osm_port_t *p_port;
> +	osm_switch_t *p_sw;
> +	osm_physp_t *p_physp;
> +	osm_node_t *p_remote_node;
> +	uint8_t i;
>  	int ret = 0;
>  
>  	CL_ASSERT(p_osm);
> @@ -550,6 +554,26 @@ int osm_pkey_mgr_process(IN osm_opensm_t * p_osm)
>  			ret = -1;
>  	}
>  
> +	/* clear partition enforcement on inter-switch links */
> +	p_tbl = &p_osm->subn.sw_guid_tbl;
> +	p_next = cl_qmap_head(p_tbl);
> +	while (p_next != cl_qmap_end(p_tbl)) {
> +		p_sw = (osm_switch_t * *) p_next;
> +		p_next = cl_qmap_next(p_next);
> +		for (i = 1; i < p_sw->num_ports; i++) {
> +			p_physp = osm_node_get_physp_ptr(p_sw->p_node, i);
> +			if (p_physp && p_physp->p_remote_physp)
> +				p_remote_node = p_physp->p_remote_physp->p_node;
> +			else
> +				continue;
> +			if (osm_node_get_type(p_remote_node) != IB_NODE_TYPE_SWITCH)
> +				continue;
> +
> +			/* clear partition enforcement */

Don't you want limit the pkey_mgr_enforce_partition() only on ports that have
these bits enable in portinfo?
Something like:

			if(! p_physp->p_remote_physp->port_info.vl_enforce && 0xc )
				continue;

> +			if (pkey_mgr_enforce_partition(&p_osm->log, &p_osm->sm, p_physp, FALSE))
> +				ret = -1;
> +		}
> +	}
>  _err:
>  	CL_PLOCK_RELEASE(&p_osm->lock);
>  	OSM_LOG_EXIT(&p_osm->log);
> -- 
> 1.7.4.1
> 
> --
> 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

-- 

-- Alex
--
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] opensm/osm_pkey_mgr: clean partition enforcement on inter-switch links
       [not found]     ` <20110503154847.GA2303-iQai9MGU/dyyaiaB+Ve85laTQe2KTcn/@public.gmane.org>
@ 2011-05-13  7:44       ` Eli Dorfman
  0 siblings, 0 replies; 4+ messages in thread
From: Eli Dorfman @ 2011-05-13  7:44 UTC (permalink / raw)
  To: Alex Netes; +Cc: Eli Dorfman, linux-rdma

On Tue, May 3, 2011 at 6:48 PM, Alex Netes <alexne-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org> wrote:
> Hi Eli,
>
> On 11:02 Tue 03 May     , Eli Dorfman wrote:
>> clean partition enforcement on inter-switch links
>>
>> after connectivity change from switch-host to switch-switch the
>> partition enforcement bits were not cleared on the port.
>> since the pkey table is not set on inter-switch links,
>> packets with pkey other than default are dropped.
>>
>> Signed-off-by: Eli Dorfman <elido-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
>> ---
>>  opensm/osm_pkey_mgr.c |   24 ++++++++++++++++++++++++
>>  1 files changed, 24 insertions(+), 0 deletions(-)
>>
>> diff --git a/opensm/osm_pkey_mgr.c b/opensm/osm_pkey_mgr.c
>> index f6bc9d1..b135cf9 100644
>> --- a/opensm/osm_pkey_mgr.c
>> +++ b/opensm/osm_pkey_mgr.c
>> @@ -507,6 +507,10 @@ int osm_pkey_mgr_process(IN osm_opensm_t * p_osm)
>>       cl_map_item_t *p_next;
>>       osm_prtn_t *p_prtn;
>>       osm_port_t *p_port;
>> +     osm_switch_t *p_sw;
>> +     osm_physp_t *p_physp;
>> +     osm_node_t *p_remote_node;
>> +     uint8_t i;
>>       int ret = 0;
>>
>>       CL_ASSERT(p_osm);
>> @@ -550,6 +554,26 @@ int osm_pkey_mgr_process(IN osm_opensm_t * p_osm)
>>                       ret = -1;
>>       }
>>
>> +     /* clear partition enforcement on inter-switch links */
>> +     p_tbl = &p_osm->subn.sw_guid_tbl;
>> +     p_next = cl_qmap_head(p_tbl);
>> +     while (p_next != cl_qmap_end(p_tbl)) {
>> +             p_sw = (osm_switch_t * *) p_next;
>> +             p_next = cl_qmap_next(p_next);
>> +             for (i = 1; i < p_sw->num_ports; i++) {
>> +                     p_physp = osm_node_get_physp_ptr(p_sw->p_node, i);
>> +                     if (p_physp && p_physp->p_remote_physp)
>> +                             p_remote_node = p_physp->p_remote_physp->p_node;
>> +                     else
>> +                             continue;
>> +                     if (osm_node_get_type(p_remote_node) != IB_NODE_TYPE_SWITCH)
>> +                             continue;
>> +
>> +                     /* clear partition enforcement */
>
> Don't you want limit the pkey_mgr_enforce_partition() only on ports that have
> these bits enable in portinfo?
> Something like:
>
>                        if(! p_physp->p_remote_physp->port_info.vl_enforce && 0xc )
>                                continue;
>
Yes, this is a good optimization but it should check the local physp
since we're running on all switches.
                         if(! p_physp->port_info.vl_enforce && 0xc )
                                continue;

-- Eli
>> +                     if (pkey_mgr_enforce_partition(&p_osm->log, &p_osm->sm, p_physp, FALSE))
>> +                             ret = -1;
>> +             }
>> +     }
>>  _err:
>>       CL_PLOCK_RELEASE(&p_osm->lock);
>>       OSM_LOG_EXIT(&p_osm->log);
>> --
>> 1.7.4.1
>>
>> --
>> 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
>
> --
>
> -- Alex
> --
> 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

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

* Re: [PATCH] opensm/osm_pkey_mgr: clean partition enforcement on inter-switch links
       [not found] ` <4DBFB67F.2090400-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
  2011-05-03 15:48   ` Alex Netes
@ 2011-05-15  6:52   ` Alex Netes
  1 sibling, 0 replies; 4+ messages in thread
From: Alex Netes @ 2011-05-15  6:52 UTC (permalink / raw)
  To: Eli Dorfman; +Cc: linux-rdma, Hal Rosenstock

Hi Eli,

On 11:02 Tue 03 May     , Eli Dorfman wrote:
> clean partition enforcement on inter-switch links
> 
> after connectivity change from switch-host to switch-switch the
> partition enforcement bits were not cleared on the port.
> since the pkey table is not set on inter-switch links,
> packets with pkey other than default are dropped.
> 
> Signed-off-by: Eli Dorfman <elido-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> ---

Applied, thanks
--
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-15  6:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-03  8:02 [PATCH] opensm/osm_pkey_mgr: clean partition enforcement on inter-switch links Eli Dorfman
     [not found] ` <4DBFB67F.2090400-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2011-05-03 15:48   ` Alex Netes
     [not found]     ` <20110503154847.GA2303-iQai9MGU/dyyaiaB+Ve85laTQe2KTcn/@public.gmane.org>
2011-05-13  7:44       ` Eli Dorfman
2011-05-15  6:52   ` Alex Netes

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