public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCHv8 06/11] ipoib: avoid ipoib over IBoE
@ 2010-02-18 17:24 Eli Cohen
  2010-05-05 22:27 ` Roland Dreier
  2010-05-06 16:13 ` Roland Dreier
  0 siblings, 2 replies; 4+ messages in thread
From: Eli Cohen @ 2010-02-18 17:24 UTC (permalink / raw)
  To: Roland Dreier; +Cc: Linux RDMA list, ewg

IPoIB is an implementation of IP over Infiniband transport. In the case of
IBoE, the link layer is Ethernet so IP can work directly over Ethernet, so
disable IPoIB for none IB_LINK_LAYER_INFINIBAND ports.

Signed-off-by: Eli Cohen <eli-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>
---
 drivers/infiniband/ulp/ipoib/ipoib_main.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/drivers/infiniband/ulp/ipoib/ipoib_main.c b/drivers/infiniband/ulp/ipoib/ipoib_main.c
index 06014d2..5e6c2de 100644
--- a/drivers/infiniband/ulp/ipoib/ipoib_main.c
+++ b/drivers/infiniband/ulp/ipoib/ipoib_main.c
@@ -1362,6 +1362,8 @@ static void ipoib_add_one(struct ib_device *device)
 	}
 
 	for (p = s; p <= e; ++p) {
+		if (rdma_port_link_layer(device, p) != IB_LINK_LAYER_INFINIBAND)
+			continue;
 		dev = ipoib_add_port("ib%d", device, p);
 		if (!IS_ERR(dev)) {
 			priv = netdev_priv(dev);
@@ -1383,6 +1385,9 @@ static void ipoib_remove_one(struct ib_device *device)
 	dev_list = ib_get_client_data(device, &ipoib_client);
 
 	list_for_each_entry_safe(priv, tmp, dev_list, list) {
+		if (rdma_port_link_layer(device, priv->port) != IB_LINK_LAYER_INFINIBAND)
+			continue;
+
 		ib_unregister_event_handler(&priv->event_handler);
 
 		rtnl_lock();
-- 
1.7.0

--
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: [PATCHv8 06/11] ipoib: avoid ipoib over IBoE
  2010-02-18 17:24 [PATCHv8 06/11] ipoib: avoid ipoib over IBoE Eli Cohen
@ 2010-05-05 22:27 ` Roland Dreier
       [not found]   ` <adamxweasrc.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
  2010-05-06 16:13 ` Roland Dreier
  1 sibling, 1 reply; 4+ messages in thread
From: Roland Dreier @ 2010-05-05 22:27 UTC (permalink / raw)
  To: Eli Cohen; +Cc: Linux RDMA list, ewg

 > @@ -1383,6 +1385,9 @@ static void ipoib_remove_one(struct ib_device *device)
 >  	dev_list = ib_get_client_data(device, &ipoib_client);
 >  
 >  	list_for_each_entry_safe(priv, tmp, dev_list, list) {
 > +		if (rdma_port_link_layer(device, priv->port) != IB_LINK_LAYER_INFINIBAND)
 > +			continue;

Why do we need this chunk here?  How could a netdev get on our list if
we never create IPoIB interfaces for IBoE ports?

 - R.
-- 
Roland Dreier <rolandd-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org> || For corporate legal information go to:
http://www.cisco.com/web/about/doing_business/legal/cri/index.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: [PATCHv8 06/11] ipoib: avoid ipoib over IBoE
       [not found]   ` <adamxweasrc.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
@ 2010-05-06 11:02     ` Eli Cohen
  0 siblings, 0 replies; 4+ messages in thread
From: Eli Cohen @ 2010-05-06 11:02 UTC (permalink / raw)
  To: Roland Dreier; +Cc: Linux RDMA list, Eli Cohen, ewg

On Wed, May 05, 2010 at 03:27:51PM -0700, Roland Dreier wrote:
>  > @@ -1383,6 +1385,9 @@ static void ipoib_remove_one(struct ib_device *device)
>  >  	dev_list = ib_get_client_data(device, &ipoib_client);
>  >  
>  >  	list_for_each_entry_safe(priv, tmp, dev_list, list) {
>  > +		if (rdma_port_link_layer(device, priv->port) != IB_LINK_LAYER_INFINIBAND)
>  > +			continue;
> 
> Why do we need this chunk here?  How could a netdev get on our list if
> we never create IPoIB interfaces for IBoE ports?
> 

Right, this is not necessary and can be removed.

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

* Re: [PATCHv8 06/11] ipoib: avoid ipoib over IBoE
  2010-02-18 17:24 [PATCHv8 06/11] ipoib: avoid ipoib over IBoE Eli Cohen
  2010-05-05 22:27 ` Roland Dreier
@ 2010-05-06 16:13 ` Roland Dreier
  1 sibling, 0 replies; 4+ messages in thread
From: Roland Dreier @ 2010-05-06 16:13 UTC (permalink / raw)
  To: Eli Cohen; +Cc: Linux RDMA list, ewg

OK, I applied this with just the first chunk.
-- 
Roland Dreier <rolandd-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org> || For corporate legal information go to:
http://www.cisco.com/web/about/doing_business/legal/cri/index.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

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-18 17:24 [PATCHv8 06/11] ipoib: avoid ipoib over IBoE Eli Cohen
2010-05-05 22:27 ` Roland Dreier
     [not found]   ` <adamxweasrc.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
2010-05-06 11:02     ` Eli Cohen
2010-05-06 16:13 ` Roland Dreier

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