public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] RDMA/ucma: Copy iWARP route information.
@ 2010-05-10 15:46 Steve Wise
       [not found] ` <20100510154656.22415.47740.stgit-T4OLL4TyM9aNDNWfRnPdfg@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Steve Wise @ 2010-05-10 15:46 UTC (permalink / raw)
  To: linux-rdma-u79uwXL29TY76Z2rM5mHXA

For iWARP rdma_cm ids, the "route" information is the L2 src and
next hop addresses.

Signed-off-by: Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
---

 drivers/infiniband/core/ucma.c |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/drivers/infiniband/core/ucma.c b/drivers/infiniband/core/ucma.c
index ac7edc2..0498383 100644
--- a/drivers/infiniband/core/ucma.c
+++ b/drivers/infiniband/core/ucma.c
@@ -583,6 +583,16 @@ static void ucma_copy_ib_route(struct rdma_ucm_query_route_resp *resp,
 	}
 }
 
+static void ucma_copy_iw_route(struct rdma_ucm_query_route_resp *resp,
+			       struct rdma_route *route)
+{
+	struct rdma_dev_addr *dev_addr;
+
+	dev_addr = &route->addr.dev_addr;
+	rdma_addr_get_dgid(dev_addr, (union ib_gid *) &resp->ib_route[0].dgid);
+	rdma_addr_get_sgid(dev_addr, (union ib_gid *) &resp->ib_route[0].sgid);
+}
+
 static ssize_t ucma_query_route(struct ucma_file *file,
 				const char __user *inbuf,
 				int in_len, int out_len)
@@ -621,6 +631,9 @@ static ssize_t ucma_query_route(struct ucma_file *file,
 	case RDMA_TRANSPORT_IB:
 		ucma_copy_ib_route(&resp, &ctx->cm_id->route);
 		break;
+	case RDMA_TRANSPORT_IWARP:
+		ucma_copy_iw_route(&resp, &ctx->cm_id->route);
+		break;
 	default:
 		break;
 	}

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

* RE: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found] ` <20100510154656.22415.47740.stgit-T4OLL4TyM9aNDNWfRnPdfg@public.gmane.org>
@ 2010-05-10 17:36   ` Sean Hefty
       [not found]     ` <1C56604F650B44A8B00B3CA55D00B95D-Zpru7NauK7drdx17CPfAsdBPR1lH4CV8@public.gmane.org>
  2010-05-19 21:58   ` Steve Wise
  1 sibling, 1 reply; 17+ messages in thread
From: Sean Hefty @ 2010-05-10 17:36 UTC (permalink / raw)
  To: 'Steve Wise', linux-rdma-u79uwXL29TY76Z2rM5mHXA

>For iWARP rdma_cm ids, the "route" information is the L2 src and
>next hop addresses.
>
>Signed-off-by: Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
>---
>
> drivers/infiniband/core/ucma.c |   13 +++++++++++++
> 1 files changed, 13 insertions(+), 0 deletions(-)
>
>diff --git a/drivers/infiniband/core/ucma.c b/drivers/infiniband/core/ucma.c
>index ac7edc2..0498383 100644
>--- a/drivers/infiniband/core/ucma.c
>+++ b/drivers/infiniband/core/ucma.c
>@@ -583,6 +583,16 @@ static void ucma_copy_ib_route(struct
>rdma_ucm_query_route_resp *resp,
> 	}
> }
>
>+static void ucma_copy_iw_route(struct rdma_ucm_query_route_resp *resp,
>+			       struct rdma_route *route)
>+{
>+	struct rdma_dev_addr *dev_addr;
>+
>+	dev_addr = &route->addr.dev_addr;
>+	rdma_addr_get_dgid(dev_addr, (union ib_gid *) &resp->ib_route[0].dgid);
>+	rdma_addr_get_sgid(dev_addr, (union ib_gid *) &resp->ib_route[0].sgid);

This looks good for the current code.

For 2.6.35/36, I've submitted changes to the query operation to support AF_IB,
essentially breaking the query_route call into query_addr, query_path, and
query_gid.  I'm guessing that this functionality should be part of the query_gid
call.  I'll adjust those patches, but if you get a chance to review the query
changes, I'd appreciate it.

- Sean

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

* RE: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found]     ` <1C56604F650B44A8B00B3CA55D00B95D-Zpru7NauK7drdx17CPfAsdBPR1lH4CV8@public.gmane.org>
@ 2010-05-11 20:28       ` Sean Hefty
       [not found]         ` <B28805226A0F4AD7B53BD430925D3D20-Zpru7NauK7drdx17CPfAsdBPR1lH4CV8@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Sean Hefty @ 2010-05-11 20:28 UTC (permalink / raw)
  To: Hefty, Sean, 'Steve Wise',
	linux-rdma-u79uwXL29TY76Z2rM5mHXA

>>+static void ucma_copy_iw_route(struct rdma_ucm_query_route_resp *resp,
>>+			       struct rdma_route *route)
>>+{
>>+	struct rdma_dev_addr *dev_addr;
>>+
>>+	dev_addr = &route->addr.dev_addr;
>>+	rdma_addr_get_dgid(dev_addr, (union ib_gid *) &resp->ib_route[0].dgid);
>>+	rdma_addr_get_sgid(dev_addr, (union ib_gid *) &resp->ib_route[0].sgid);
>
>essentially breaking the query_route call into query_addr, query_path, and
>query_gid.

I'm unsure where exactly this change would fit into the newer query model.  Are
these values available after rdma_resolve_addr completes?  Are the sgid and dgid
the same type of values (e.g. L2 addresses)?  If the device does ARP internally,
is the dgid value still set?

My current implementation for 'query_gid' returns GIDs using an AF_IB address
structure.  I'm trying to figure out what structure we should be using to return
the iwarp values -- some other sockaddr, an iw_path_record, other? 

Here are links to the proposed changes:

http://www.openfabrics.org/git/?p=~shefty/rdma-dev.git;a=commitdiff;h=b87cccdb27
a7e75c0f9e03a9d37593ceab4d4ede

http://www.openfabrics.org/git/?p=~shefty/rdma-dev.git;a=commitdiff;h=1830722bb5
e84451e3b458719cea8c746a2fb6d4

http://www.openfabrics.org/git/?p=~shefty/rdma-dev.git;a=commitdiff;h=0257cc9298
aa70c4bfc1a8c393f970375a897825

- Sean

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

* Re: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found]         ` <B28805226A0F4AD7B53BD430925D3D20-Zpru7NauK7drdx17CPfAsdBPR1lH4CV8@public.gmane.org>
@ 2010-05-11 20:38           ` Steve Wise
       [not found]             ` <4BE9C04E.4040907-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Steve Wise @ 2010-05-11 20:38 UTC (permalink / raw)
  To: Sean Hefty; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

Sean Hefty wrote:
>>> +static void ucma_copy_iw_route(struct rdma_ucm_query_route_resp *resp,
>>> +			       struct rdma_route *route)
>>> +{
>>> +	struct rdma_dev_addr *dev_addr;
>>> +
>>> +	dev_addr = &route->addr.dev_addr;
>>> +	rdma_addr_get_dgid(dev_addr, (union ib_gid *) &resp->ib_route[0].dgid);
>>> +	rdma_addr_get_sgid(dev_addr, (union ib_gid *) &resp->ib_route[0].sgid);
>>>       
>> essentially breaking the query_route call into query_addr, query_path, and
>> query_gid.
>>     
>
> I'm unsure where exactly this change would fit into the newer query model.  Are
> these values available after rdma_resolve_addr completes? 


Yes.


>  Are the sgid and dgid
> the same type of values (e.g. L2 addresses)?  


Yes.


> If the device does ARP internally,
> is the dgid value still set?
>
>   


No.  But only Amso does this, and its old and crusty...


> My current implementation for 'query_gid' returns GIDs using an AF_IB address
> structure.  I'm trying to figure out what structure we should be using to return
> the iwarp values -- some other sockaddr, an iw_path_record, other? 
>
>   


I'll have to ponder this.   In the past, we've been using the gid.raw 
areas to hold these mac addresses...

> Here are links to the proposed changes:
>
> http://www.openfabrics.org/git/?p=~shefty/rdma-dev.git;a=commitdiff;h=b87cccdb27
> a7e75c0f9e03a9d37593ceab4d4ede
>
> http://www.openfabrics.org/git/?p=~shefty/rdma-dev.git;a=commitdiff;h=1830722bb5
> e84451e3b458719cea8c746a2fb6d4
>
> http://www.openfabrics.org/git/?p=~shefty/rdma-dev.git;a=commitdiff;h=0257cc9298
> aa70c4bfc1a8c393f970375a897825
>
> - Sean
>   

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

* RE: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found]             ` <4BE9C04E.4040907-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
@ 2010-05-11 21:22               ` Sean Hefty
       [not found]                 ` <23BD55BBBEC444B18E7B48D98CC1EBA5-Zpru7NauK7drdx17CPfAsdBPR1lH4CV8@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Sean Hefty @ 2010-05-11 21:22 UTC (permalink / raw)
  To: 'Steve Wise'; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

>I'll have to ponder this.   In the past, we've been using the gid.raw
>areas to hold these mac addresses...

There's not too many options with the existing ABI, but the newer query
interfaces will give us more flexibility, like variable length addresses, which
may make this cleaner.  Maybe we can return the L2 address through an AF_UNSPEC
sockaddr?

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

* Re: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found]                 ` <23BD55BBBEC444B18E7B48D98CC1EBA5-Zpru7NauK7drdx17CPfAsdBPR1lH4CV8@public.gmane.org>
@ 2010-05-12 19:33                   ` Steve Wise
       [not found]                     ` <4BEB027B.5060500-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Steve Wise @ 2010-05-12 19:33 UTC (permalink / raw)
  To: Sean Hefty; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA


Sean Hefty wrote:
>> I'll have to ponder this.   In the past, we've been using the gid.raw
>> areas to hold these mac addresses...
>>     
>
> There's not too many options with the existing ABI, but the newer query
> interfaces will give us more flexibility, like variable length addresses, which
> may make this cleaner.  Maybe we can return the L2 address through an AF_UNSPEC
> sockaddr?
>
>   
What does AF_UNSPEC imply about the format of the sockaddr?




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

* RE: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found]                     ` <4BEB027B.5060500-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
@ 2010-05-12 21:52                       ` Sean Hefty
       [not found]                         ` <5A102C804D4348A5BCE504F433888BED-Zpru7NauK7drdx17CPfAsdBPR1lH4CV8@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Sean Hefty @ 2010-05-12 21:52 UTC (permalink / raw)
  To: 'Steve Wise'; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

>What does AF_UNSPEC imply about the format of the sockaddr?

That it depends on the usage..?  I came up with this based on using ioctl to
manipulate the ARP cache:

SIOCSARP - Add a new entry to the ARP cache or modify an existing entry ...
arp_ha is a generic socket address structure with sa_family set to AF_UNSPEC and
sa_data containing the hardware address (e.g. the 6-byte Ethernet address).

The librdmacm should have enough context to interpret the meaning of the
query_gid response.

- Sean

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

* Re: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found]                         ` <5A102C804D4348A5BCE504F433888BED-Zpru7NauK7drdx17CPfAsdBPR1lH4CV8@public.gmane.org>
@ 2010-05-12 22:03                           ` Steve Wise
  0 siblings, 0 replies; 17+ messages in thread
From: Steve Wise @ 2010-05-12 22:03 UTC (permalink / raw)
  To: Sean Hefty; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

Sean Hefty wrote:
>> What does AF_UNSPEC imply about the format of the sockaddr?
>>     
>
> That it depends on the usage..?  I came up with this based on using ioctl to
> manipulate the ARP cache:
>
> SIOCSARP - Add a new entry to the ARP cache or modify an existing entry ...
> arp_ha is a generic socket address structure with sa_family set to AF_UNSPEC and
> sa_data containing the hardware address (e.g. the 6-byte Ethernet address).
>
> The librdmacm should have enough context to interpret the meaning of the
> query_gid response.
>
> - Sean
>   

sounds ok to me.


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

* Re: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found] ` <20100510154656.22415.47740.stgit-T4OLL4TyM9aNDNWfRnPdfg@public.gmane.org>
  2010-05-10 17:36   ` Sean Hefty
@ 2010-05-19 21:58   ` Steve Wise
       [not found]     ` <4BF45F1A.4010707-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
  1 sibling, 1 reply; 17+ messages in thread
From: Steve Wise @ 2010-05-19 21:58 UTC (permalink / raw)
  To: Roland Dreier, Sean Hefty; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

Roland/Sean, is this ok for 2.6.35?


Steve Wise wrote:
> For iWARP rdma_cm ids, the "route" information is the L2 src and
> next hop addresses.
>
> Signed-off-by: Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
> ---
>
>  drivers/infiniband/core/ucma.c |   13 +++++++++++++
>  1 files changed, 13 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/infiniband/core/ucma.c b/drivers/infiniband/core/ucma.c
> index ac7edc2..0498383 100644
> --- a/drivers/infiniband/core/ucma.c
> +++ b/drivers/infiniband/core/ucma.c
> @@ -583,6 +583,16 @@ static void ucma_copy_ib_route(struct rdma_ucm_query_route_resp *resp,
>  	}
>  }
>  
> +static void ucma_copy_iw_route(struct rdma_ucm_query_route_resp *resp,
> +			       struct rdma_route *route)
> +{
> +	struct rdma_dev_addr *dev_addr;
> +
> +	dev_addr = &route->addr.dev_addr;
> +	rdma_addr_get_dgid(dev_addr, (union ib_gid *) &resp->ib_route[0].dgid);
> +	rdma_addr_get_sgid(dev_addr, (union ib_gid *) &resp->ib_route[0].sgid);
> +}
> +
>  static ssize_t ucma_query_route(struct ucma_file *file,
>  				const char __user *inbuf,
>  				int in_len, int out_len)
> @@ -621,6 +631,9 @@ static ssize_t ucma_query_route(struct ucma_file *file,
>  	case RDMA_TRANSPORT_IB:
>  		ucma_copy_ib_route(&resp, &ctx->cm_id->route);
>  		break;
> +	case RDMA_TRANSPORT_IWARP:
> +		ucma_copy_iw_route(&resp, &ctx->cm_id->route);
> +		break;
>  	default:
>  		break;
>  	}
>
> --
> 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] 17+ messages in thread

* Re: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found]     ` <4BF45F1A.4010707-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
@ 2010-05-19 22:03       ` Roland Dreier
       [not found]         ` <adaeih7eegq.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Roland Dreier @ 2010-05-19 22:03 UTC (permalink / raw)
  To: Steve Wise; +Cc: Sean Hefty, linux-rdma-u79uwXL29TY76Z2rM5mHXA

 > Roland/Sean, is this ok for 2.6.35?

I guess it's fine.  What does it give us by itself though?

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

* Re: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found]         ` <adaeih7eegq.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
@ 2010-05-19 22:09           ` Steve Wise
       [not found]             ` <4BF4618C.1090106-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Steve Wise @ 2010-05-19 22:09 UTC (permalink / raw)
  To: Roland Dreier; +Cc: Sean Hefty, linux-rdma-u79uwXL29TY76Z2rM5mHXA

Roland Dreier wrote:
>  > Roland/Sean, is this ok for 2.6.35?
>
> I guess it's fine.  What does it give us by itself though?
>
>   

Piece of mind. :)


IMO it is a bug fix.


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

* Re: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found]             ` <4BF4618C.1090106-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
@ 2011-01-11 21:48               ` Steve Wise
       [not found]                 ` <4D2CD02C.1000607-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Steve Wise @ 2011-01-11 21:48 UTC (permalink / raw)
  To: Roland Dreier; +Cc: Sean Hefty, linux-rdma-u79uwXL29TY76Z2rM5mHXA

Hey Roland,

Did this patch ever make it upstream?  I don't see it.


On 5/19/2010 5:09 PM, Steve Wise wrote:
> Roland Dreier wrote:
>> > Roland/Sean, is this ok for 2.6.35?
>>
>> I guess it's fine.  What does it give us by itself though?
>>
>
> Piece of mind. :)
>
>
> IMO it is a bug fix.
>
>
> -- 
> 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] 17+ messages in thread

* Re: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found]                 ` <4D2CD02C.1000607-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
@ 2011-01-12 18:32                   ` Roland Dreier
       [not found]                     ` <ada1v4i55wv.fsf-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Roland Dreier @ 2011-01-12 18:32 UTC (permalink / raw)
  To: Steve Wise; +Cc: Sean Hefty, linux-rdma-u79uwXL29TY76Z2rM5mHXA

 > Did this patch ever make it upstream?  I don't see it.

Nope, guess it got dropped.  It doesn't apply after the IBoE changes --
can you regenerate it?

 - R.
--
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] 17+ messages in thread

* Re: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found]                     ` <ada1v4i55wv.fsf-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org>
@ 2011-01-12 18:38                       ` Steve Wise
  2011-01-18 21:56                       ` Steve Wise
  1 sibling, 0 replies; 17+ messages in thread
From: Steve Wise @ 2011-01-12 18:38 UTC (permalink / raw)
  To: Roland Dreier; +Cc: Sean Hefty, linux-rdma-u79uwXL29TY76Z2rM5mHXA

Yes, I will.

Thanks,

Steve.

On 01/12/2011 12:32 PM, Roland Dreier wrote:
>   >  Did this patch ever make it upstream?  I don't see it.
>
> Nope, guess it got dropped.  It doesn't apply after the IBoE changes --
> can you regenerate it?
>
>   - R.

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

* Re: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found]                     ` <ada1v4i55wv.fsf-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org>
  2011-01-12 18:38                       ` Steve Wise
@ 2011-01-18 21:56                       ` Steve Wise
       [not found]                         ` <4D360C7B.30207-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
  1 sibling, 1 reply; 17+ messages in thread
From: Steve Wise @ 2011-01-18 21:56 UTC (permalink / raw)
  To: Roland Dreier; +Cc: Sean Hefty, linux-rdma-u79uwXL29TY76Z2rM5mHXA

On 01/12/2011 12:32 PM, Roland Dreier wrote:
>   >  Did this patch ever make it upstream?  I don't see it.
>
> Nope, guess it got dropped.  It doesn't apply after the IBoE changes --
> can you regenerate it?
>

Hey,

Did this:

http://www.mail-archive.com/linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org/msg03182.html

ever make it upstream?
--
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] 17+ messages in thread

* RE: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found]                         ` <4D360C7B.30207-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
@ 2011-01-18 23:14                           ` Hefty, Sean
       [not found]                             ` <CF9C39F99A89134C9CF9C4CCB68B8DDF25C1C997FD-osO9UTpF0USkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Hefty, Sean @ 2011-01-18 23:14 UTC (permalink / raw)
  To: Steve Wise, Roland Dreier
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org

> Did this:
> 
> http://www.mail-archive.com/linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org/msg03182.html
> 
> ever make it upstream?

No, but this patch set is still listed in patchworks as new.  I just updated the set to 2.6.37 and pushed those changes into an af_ib branch in my git tree.

- Sean
--
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] 17+ messages in thread

* Re: [PATCH] RDMA/ucma: Copy iWARP route information.
       [not found]                             ` <CF9C39F99A89134C9CF9C4CCB68B8DDF25C1C997FD-osO9UTpF0USkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
@ 2011-01-18 23:16                               ` Steve Wise
  0 siblings, 0 replies; 17+ messages in thread
From: Steve Wise @ 2011-01-18 23:16 UTC (permalink / raw)
  To: Hefty, Sean
  Cc: Roland Dreier, linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org

On 01/18/2011 05:14 PM, Hefty, Sean wrote:
>> Did this:
>>
>> http://www.mail-archive.com/linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org/msg03182.html
>>
>> ever make it upstream?
> No, but this patch set is still listed in patchworks as new.  I just updated the set to 2.6.37 and pushed those changes into an af_ib branch in my git tree.
>
> - Sean
> --
> 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

The reason I asked is that my small change for adding the mac addresses in iwarp routes will cause a merge issue.   
Roland, do you have plans to merge sean's series soon?
--
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] 17+ messages in thread

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

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-10 15:46 [PATCH] RDMA/ucma: Copy iWARP route information Steve Wise
     [not found] ` <20100510154656.22415.47740.stgit-T4OLL4TyM9aNDNWfRnPdfg@public.gmane.org>
2010-05-10 17:36   ` Sean Hefty
     [not found]     ` <1C56604F650B44A8B00B3CA55D00B95D-Zpru7NauK7drdx17CPfAsdBPR1lH4CV8@public.gmane.org>
2010-05-11 20:28       ` Sean Hefty
     [not found]         ` <B28805226A0F4AD7B53BD430925D3D20-Zpru7NauK7drdx17CPfAsdBPR1lH4CV8@public.gmane.org>
2010-05-11 20:38           ` Steve Wise
     [not found]             ` <4BE9C04E.4040907-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
2010-05-11 21:22               ` Sean Hefty
     [not found]                 ` <23BD55BBBEC444B18E7B48D98CC1EBA5-Zpru7NauK7drdx17CPfAsdBPR1lH4CV8@public.gmane.org>
2010-05-12 19:33                   ` Steve Wise
     [not found]                     ` <4BEB027B.5060500-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
2010-05-12 21:52                       ` Sean Hefty
     [not found]                         ` <5A102C804D4348A5BCE504F433888BED-Zpru7NauK7drdx17CPfAsdBPR1lH4CV8@public.gmane.org>
2010-05-12 22:03                           ` Steve Wise
2010-05-19 21:58   ` Steve Wise
     [not found]     ` <4BF45F1A.4010707-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
2010-05-19 22:03       ` Roland Dreier
     [not found]         ` <adaeih7eegq.fsf-BjVyx320WGW9gfZ95n9DRSW4+XlvGpQz@public.gmane.org>
2010-05-19 22:09           ` Steve Wise
     [not found]             ` <4BF4618C.1090106-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
2011-01-11 21:48               ` Steve Wise
     [not found]                 ` <4D2CD02C.1000607-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
2011-01-12 18:32                   ` Roland Dreier
     [not found]                     ` <ada1v4i55wv.fsf-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org>
2011-01-12 18:38                       ` Steve Wise
2011-01-18 21:56                       ` Steve Wise
     [not found]                         ` <4D360C7B.30207-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
2011-01-18 23:14                           ` Hefty, Sean
     [not found]                             ` <CF9C39F99A89134C9CF9C4CCB68B8DDF25C1C997FD-osO9UTpF0USkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2011-01-18 23:16                               ` Steve Wise

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