All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
@ 2016-01-07  9:19 Matan Barak
       [not found] ` <1452158369-2938-1-git-send-email-matanb-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Matan Barak @ 2016-01-07  9:19 UTC (permalink / raw)
  To: Doug Ledford
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, Or Gerlitz, Majd Dibbiny,
	Hariprasad Shenai, Matan Barak

cma_validate_port wrongly assumed that Ethernet devices are RoCE
devices and thus their ndev should be matched in the GID table.
This broke the iWarp support. Fixing that matching the ndev only if
we work on a RoCE port.

Fixes: abae1b71dd37 ('IB/cma: cma_validate_port should verify the port
		     and netdevice')
Reported-by: Hariprasad Shenai <hariprasad-ut6Up61K2wZBDgjK7y7TUQ@public.gmane.org>
Tested-by: Hariprasad Shenai <hariprasad-ut6Up61K2wZBDgjK7y7TUQ@public.gmane.org>
Signed-off-by: Matan Barak <matanb-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
---

Hi Doug,

This patch fixes an iWarp issue that was introduced in the RoCE
refactoring series.

Regards,
Matan

Changes from V0:
 - Fixed typo

 drivers/infiniband/core/cma.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c
index 2d762a2..17a15c5 100644
--- a/drivers/infiniband/core/cma.c
+++ b/drivers/infiniband/core/cma.c
@@ -453,7 +453,7 @@ static inline int cma_validate_port(struct ib_device *device, u8 port,
 	if ((dev_type != ARPHRD_INFINIBAND) && rdma_protocol_ib(device, port))
 		return ret;
 
-	if (dev_type == ARPHRD_ETHER)
+	if (dev_type == ARPHRD_ETHER && rdma_protocol_roce(device, port))
 		ndev = dev_get_by_index(&init_net, bound_if_index);
 
 	ret = ib_find_cached_gid_by_port(device, gid, port, ndev, NULL);
-- 
2.1.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] 13+ messages in thread

* RE: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
       [not found] ` <1452158369-2938-1-git-send-email-matanb-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
@ 2016-01-07 17:38   ` Steve Wise
  2016-01-12 18:43   ` Steve Wise
  1 sibling, 0 replies; 13+ messages in thread
From: Steve Wise @ 2016-01-07 17:38 UTC (permalink / raw)
  To: 'Matan Barak', 'Doug Ledford'
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, 'Or Gerlitz',
	'Majd Dibbiny', 'Hariprasad Shenai'



> -----Original Message-----
> From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Matan Barak
> Sent: Thursday, January 07, 2016 3:19 AM
> To: Doug Ledford
> Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; Or Gerlitz; Majd Dibbiny; Hariprasad Shenai; Matan Barak
> Subject: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
> 
> cma_validate_port wrongly assumed that Ethernet devices are RoCE
> devices and thus their ndev should be matched in the GID table.
> This broke the iWarp support. Fixing that matching the ndev only if
> we work on a RoCE port.
> 
> Fixes: abae1b71dd37 ('IB/cma: cma_validate_port should verify the port
> 		     and netdevice')
> Reported-by: Hariprasad Shenai <hariprasad-ut6Up61K2wZBDgjK7y7TUQ@public.gmane.org>
> Tested-by: Hariprasad Shenai <hariprasad-ut6Up61K2wZBDgjK7y7TUQ@public.gmane.org>
> Signed-off-by: Matan Barak <matanb-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>

Reviewed-by: Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@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] 13+ messages in thread

* RE: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
       [not found] ` <1452158369-2938-1-git-send-email-matanb-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  2016-01-07 17:38   ` Steve Wise
@ 2016-01-12 18:43   ` Steve Wise
  2016-01-13 10:32     ` Matan Barak
  1 sibling, 1 reply; 13+ messages in thread
From: Steve Wise @ 2016-01-12 18:43 UTC (permalink / raw)
  To: 'Matan Barak', 'Doug Ledford'
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, 'Or Gerlitz',
	'Majd Dibbiny', 'Hariprasad Shenai'

Hey Matan,

Will you please submit this to 4.4-stable?

Thanks,

Steve.

> -----Original Message-----
> From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Matan Barak
> Sent: Thursday, January 07, 2016 3:19 AM
> To: Doug Ledford
> Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; Or Gerlitz; Majd Dibbiny; Hariprasad Shenai; Matan Barak
> Subject: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
> 
> cma_validate_port wrongly assumed that Ethernet devices are RoCE
> devices and thus their ndev should be matched in the GID table.
> This broke the iWarp support. Fixing that matching the ndev only if
> we work on a RoCE port.
> 
> Fixes: abae1b71dd37 ('IB/cma: cma_validate_port should verify the port
> 		     and netdevice')
> Reported-by: Hariprasad Shenai <hariprasad-ut6Up61K2wZBDgjK7y7TUQ@public.gmane.org>
> Tested-by: Hariprasad Shenai <hariprasad-ut6Up61K2wZBDgjK7y7TUQ@public.gmane.org>
> Signed-off-by: Matan Barak <matanb-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> ---
> 
> Hi Doug,
> 
> This patch fixes an iWarp issue that was introduced in the RoCE
> refactoring series.
> 
> Regards,
> Matan
> 
> Changes from V0:
>  - Fixed typo
> 
>  drivers/infiniband/core/cma.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c
> index 2d762a2..17a15c5 100644
> --- a/drivers/infiniband/core/cma.c
> +++ b/drivers/infiniband/core/cma.c
> @@ -453,7 +453,7 @@ static inline int cma_validate_port(struct ib_device *device, u8 port,
>  	if ((dev_type != ARPHRD_INFINIBAND) && rdma_protocol_ib(device, port))
>  		return ret;
> 
> -	if (dev_type == ARPHRD_ETHER)
> +	if (dev_type == ARPHRD_ETHER && rdma_protocol_roce(device, port))
>  		ndev = dev_get_by_index(&init_net, bound_if_index);
> 
>  	ret = ib_find_cached_gid_by_port(device, gid, port, ndev, NULL);
> --
> 2.1.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

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

* Re: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
  2016-01-12 18:43   ` Steve Wise
@ 2016-01-13 10:32     ` Matan Barak
       [not found]       ` <CAAKD3BAWUfg6sVLCEtb-vBrC9kGtVYO784xg4_tGqiZaOVh-2Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Matan Barak @ 2016-01-13 10:32 UTC (permalink / raw)
  To: Steve Wise
  Cc: Matan Barak, Doug Ledford, linux-rdma, Or Gerlitz, Majd Dibbiny,
	Hariprasad Shenai

On Tue, Jan 12, 2016 at 8:43 PM, Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org> wrote:
> Hey Matan,
>
> Will you please submit this to 4.4-stable?
>
> Thanks,
>
> Steve.
>

You could only take it to 4.4-stable, once it's accepted to 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] 13+ messages in thread

* RE: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
       [not found]       ` <CAAKD3BAWUfg6sVLCEtb-vBrC9kGtVYO784xg4_tGqiZaOVh-2Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2016-01-13 15:03         ` Steve Wise
  2016-01-14  7:14           ` Or Gerlitz
  0 siblings, 1 reply; 13+ messages in thread
From: Steve Wise @ 2016-01-13 15:03 UTC (permalink / raw)
  To: 'Matan Barak', dledford-H+wXaHxf7aLQT0dZR+AlfA
  Cc: 'linux-rdma', 'Or Gerlitz',
	'Majd Dibbiny', 'Hariprasad Shenai'

> -----Original Message-----
> From: Matan Barak [mailto:matanb-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org]
> Sent: Wednesday, January 13, 2016 4:33 AM
> To: Steve Wise
> Cc: Matan Barak; Doug Ledford; linux-rdma; Or Gerlitz; Majd Dibbiny; Hariprasad Shenai
> Subject: Re: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
> 
> On Tue, Jan 12, 2016 at 8:43 PM, Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org> wrote:
> > Hey Matan,
> >
> > Will you please submit this to 4.4-stable?
> >
> > Thanks,
> >
> > Steve.
> >
> 
> You could only take it to 4.4-stable, once it's accepted to upstream.

You could add this to the sign-off section of the patch and it will flow automagically...

Cc:  <stable-u79uwXL29TY76Z2rM5mHXA@public.gmane.org> # 4.4.x-

Doug, perhaps you could add this when you pull it in?


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

* Re: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
  2016-01-13 15:03         ` Steve Wise
@ 2016-01-14  7:14           ` Or Gerlitz
       [not found]             ` <56974AEE.6060201-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Or Gerlitz @ 2016-01-14  7:14 UTC (permalink / raw)
  To: Steve Wise
  Cc: 'Matan Barak',
	dledford-H+wXaHxf7aLQT0dZR+AlfA, 'linux-rdma',
	'Majd Dibbiny', 'Hariprasad Shenai'

On 1/13/2016 5:03 PM, Steve Wise wrote:
>> -----Original Message-----
>> From: Matan Barak [mailto:matanb-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org]
>> Sent: Wednesday, January 13, 2016 4:33 AM
>> To: Steve Wise
>> Cc: Matan Barak; Doug Ledford; linux-rdma; Or Gerlitz; Majd Dibbiny; Hariprasad Shenai
>> Subject: Re: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
>>
>> On Tue, Jan 12, 2016 at 8:43 PM, Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org> wrote:
>>> Hey Matan,
>>>
>>> Will you please submit this to 4.4-stable?
>>>
>>> Thanks,
>>>
>>> Steve.
>>>
>> You could only take it to 4.4-stable, once it's accepted to upstream.
> You could add this to the sign-off section of the patch and it will flow automagically...
>
> Cc:  <stable-u79uwXL29TY76Z2rM5mHXA@public.gmane.org> # 4.4.x-
>
> Doug, perhaps you could add this when you pull it in?

Steve,

We prefer that patches to our drivers and the IB core will swim for a 
while in upstream before they go to -stable.

I suggest we wait till 4.5-rc2 for that, Okay?

Or.



>

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

* RE: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
       [not found]             ` <56974AEE.6060201-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
@ 2016-01-14 14:53               ` Steve Wise
  2016-01-14 15:00                 ` Or Gerlitz
  0 siblings, 1 reply; 13+ messages in thread
From: Steve Wise @ 2016-01-14 14:53 UTC (permalink / raw)
  To: 'Or Gerlitz'
  Cc: 'Matan Barak',
	dledford-H+wXaHxf7aLQT0dZR+AlfA, 'linux-rdma',
	'Majd Dibbiny', 'Hariprasad Shenai'



> -----Original Message-----
> From: Or Gerlitz [mailto:ogerlitz-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org]
> Sent: Thursday, January 14, 2016 1:15 AM
> To: Steve Wise
> Cc: 'Matan Barak'; dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org; 'linux-rdma'; 'Majd Dibbiny'; 'Hariprasad Shenai'
> Subject: Re: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
> 
> On 1/13/2016 5:03 PM, Steve Wise wrote:
> >> -----Original Message-----
> >> From: Matan Barak [mailto:matanb-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org]
> >> Sent: Wednesday, January 13, 2016 4:33 AM
> >> To: Steve Wise
> >> Cc: Matan Barak; Doug Ledford; linux-rdma; Or Gerlitz; Majd Dibbiny; Hariprasad Shenai
> >> Subject: Re: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
> >>
> >> On Tue, Jan 12, 2016 at 8:43 PM, Steve Wise <swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org> wrote:
> >>> Hey Matan,
> >>>
> >>> Will you please submit this to 4.4-stable?
> >>>
> >>> Thanks,
> >>>
> >>> Steve.
> >>>
> >> You could only take it to 4.4-stable, once it's accepted to upstream.
> > You could add this to the sign-off section of the patch and it will flow automagically...
> >
> > Cc:  <stable-u79uwXL29TY76Z2rM5mHXA@public.gmane.org> # 4.4.x-
> >
> > Doug, perhaps you could add this when you pull it in?
> 
> Steve,
> 
> We prefer that patches to our drivers and the IB core will swim for a
> while in upstream before they go to -stable.
> 
> I suggest we wait till 4.5-rc2 for that, Okay?
> 

Hey Or,

iWARP is non-functional in 4.4, and this patch fixes the regression.  I suggest we get this fix in stable asap.


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

* Re: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
  2016-01-14 14:53               ` Steve Wise
@ 2016-01-14 15:00                 ` Or Gerlitz
       [not found]                   ` <5697B80E.5090903-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Or Gerlitz @ 2016-01-14 15:00 UTC (permalink / raw)
  To: Steve Wise
  Cc: 'Matan Barak',
	dledford-H+wXaHxf7aLQT0dZR+AlfA, 'linux-rdma',
	'Majd Dibbiny', 'Hariprasad Shenai'

On 1/14/2016 4:53 PM, Steve Wise wrote:
> Hey Or, iWARP is non-functional in 4.4, and this patch fixes the regression.  I suggest we get this fix in stable asap.

sure, we can make an exception in our usual track for this one, but you 
need upstream commit ID ## -- Doug is your key person here
--
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] 13+ messages in thread

* RE: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
       [not found]                   ` <5697B80E.5090903-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
@ 2016-01-14 15:08                     ` Steve Wise
  2016-01-14 17:40                     ` Leon Romanovsky
  1 sibling, 0 replies; 13+ messages in thread
From: Steve Wise @ 2016-01-14 15:08 UTC (permalink / raw)
  To: 'Or Gerlitz', dledford-H+wXaHxf7aLQT0dZR+AlfA
  Cc: 'Matan Barak', 'linux-rdma',
	'Majd Dibbiny', 'Hariprasad Shenai'



> -----Original Message-----
> From: Or Gerlitz [mailto:ogerlitz-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org]
> Sent: Thursday, January 14, 2016 9:01 AM
> To: Steve Wise
> Cc: 'Matan Barak'; dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org; 'linux-rdma'; 'Majd Dibbiny'; 'Hariprasad Shenai'
> Subject: Re: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
> 
> On 1/14/2016 4:53 PM, Steve Wise wrote:
> > Hey Or, iWARP is non-functional in 4.4, and this patch fixes the regression.  I suggest we get this fix in stable asap.
> 
> sure, we can make an exception in our usual track for this one, but you
> need upstream commit ID ## -- Doug is your key person here

This patch commit comment cites the offending patch:

Fixes: abae1b71dd37 ('IB/cma: cma_validate_port should verify the port
		     and netdevice')

Does that need to be in the Cc: line somehow?

Doug?  

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

* Re: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
       [not found]                   ` <5697B80E.5090903-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  2016-01-14 15:08                     ` Steve Wise
@ 2016-01-14 17:40                     ` Leon Romanovsky
       [not found]                       ` <20160114174014.GA30615-2ukJVAZIZ/Y@public.gmane.org>
  1 sibling, 1 reply; 13+ messages in thread
From: Leon Romanovsky @ 2016-01-14 17:40 UTC (permalink / raw)
  To: Or Gerlitz
  Cc: Steve Wise, 'Matan Barak',
	dledford-H+wXaHxf7aLQT0dZR+AlfA, 'linux-rdma',
	'Majd Dibbiny', 'Hariprasad Shenai'

On Thu, Jan 14, 2016 at 05:00:30PM +0200, Or Gerlitz wrote:
> On 1/14/2016 4:53 PM, Steve Wise wrote:
> >Hey Or, iWARP is non-functional in 4.4, and this patch fixes the regression.  I suggest we get this fix in stable asap.
> 
> sure, we can make an exception in our usual track for this one, but you need
> upstream commit ID ## -- Doug is your key person here

Or, there are no doubts that commit ID is important for our work, however
submission to stable can be done without it [1].

Just follow the Steve's advice on cc-ing stable list in sign-off section.

[1] http://lxr.free-electrons.com/source/Documentation/stable_kernel_rules.txt#L40

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

* Re: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
       [not found]                       ` <20160114174014.GA30615-2ukJVAZIZ/Y@public.gmane.org>
@ 2016-01-15 19:47                         ` Steve Wise
       [not found]                           ` <56994CE2.1060205-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Steve Wise @ 2016-01-15 19:47 UTC (permalink / raw)
  To: dledford-H+wXaHxf7aLQT0dZR+AlfA, 'linux-rdma'
  Cc: Or Gerlitz, 'Matan Barak', 'Majd Dibbiny',
	'Hariprasad Shenai'

On 1/14/2016 11:40 AM, Leon Romanovsky wrote:
> On Thu, Jan 14, 2016 at 05:00:30PM +0200, Or Gerlitz wrote:
>> On 1/14/2016 4:53 PM, Steve Wise wrote:
>>> Hey Or, iWARP is non-functional in 4.4, and this patch fixes the regression.  I suggest we get this fix in stable asap.
>> sure, we can make an exception in our usual track for this one, but you need
>> upstream commit ID ## -- Doug is your key person here
> Or, there are no doubts that commit ID is important for our work, however
> submission to stable can be done without it [1].
>
> Just follow the Steve's advice on cc-ing stable list in sign-off section.
>
> [1] http://lxr.free-electrons.com/source/Documentation/stable_kernel_rules.txt#L40
>

Hey Doug, can you please accept this and add the Cc: line to get it into 
stable-4.x?

Thanks,

Steve.
--
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] 13+ messages in thread

* Re: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
       [not found]                           ` <56994CE2.1060205-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
@ 2016-01-19 18:44                             ` Doug Ledford
       [not found]                               ` <569E8402.2080001-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Doug Ledford @ 2016-01-19 18:44 UTC (permalink / raw)
  To: Steve Wise, 'linux-rdma'
  Cc: Or Gerlitz, 'Matan Barak', 'Majd Dibbiny',
	'Hariprasad Shenai'

[-- Attachment #1: Type: text/plain, Size: 1136 bytes --]

On 01/15/2016 02:47 PM, Steve Wise wrote:
> On 1/14/2016 11:40 AM, Leon Romanovsky wrote:
>> On Thu, Jan 14, 2016 at 05:00:30PM +0200, Or Gerlitz wrote:
>>> On 1/14/2016 4:53 PM, Steve Wise wrote:
>>>> Hey Or, iWARP is non-functional in 4.4, and this patch fixes the
>>>> regression.  I suggest we get this fix in stable asap.
>>> sure, we can make an exception in our usual track for this one, but
>>> you need
>>> upstream commit ID ## -- Doug is your key person here
>> Or, there are no doubts that commit ID is important for our work, however
>> submission to stable can be done without it [1].
>>
>> Just follow the Steve's advice on cc-ing stable list in sign-off section.
>>
>> [1]
>> http://lxr.free-electrons.com/source/Documentation/stable_kernel_rules.txt#L40
>>
>>
> 
> Hey Doug, can you please accept this and add the Cc: line to get it into
> stable-4.x?
> 
> Thanks,
> 
> Steve.

I've pulled this in.  I had to fix it up to work with some other code,
and I added the Cc: to stable.

-- 
Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
              GPG KeyID: 0E572FDD



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 884 bytes --]

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

* RE: [PATCH V1] IB/cma: Fix RDMA port validation for iWarp
       [not found]                               ` <569E8402.2080001-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2016-01-19 18:52                                 ` Steve Wise
  0 siblings, 0 replies; 13+ messages in thread
From: Steve Wise @ 2016-01-19 18:52 UTC (permalink / raw)
  To: 'Doug Ledford', 'linux-rdma'
  Cc: 'Or Gerlitz', 'Matan Barak',
	'Majd Dibbiny', 'Hariprasad Shenai'

> >
> > Hey Doug, can you please accept this and add the Cc: line to get it into
> > stable-4.x?
> >
> > Thanks,
> >
> > Steve.
> 
> I've pulled this in.  I had to fix it up to work with some other code,
> and I added the Cc: to stable.
> 

Thanks Doug.


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

end of thread, other threads:[~2016-01-19 18:52 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-07  9:19 [PATCH V1] IB/cma: Fix RDMA port validation for iWarp Matan Barak
     [not found] ` <1452158369-2938-1-git-send-email-matanb-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2016-01-07 17:38   ` Steve Wise
2016-01-12 18:43   ` Steve Wise
2016-01-13 10:32     ` Matan Barak
     [not found]       ` <CAAKD3BAWUfg6sVLCEtb-vBrC9kGtVYO784xg4_tGqiZaOVh-2Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-01-13 15:03         ` Steve Wise
2016-01-14  7:14           ` Or Gerlitz
     [not found]             ` <56974AEE.6060201-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2016-01-14 14:53               ` Steve Wise
2016-01-14 15:00                 ` Or Gerlitz
     [not found]                   ` <5697B80E.5090903-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2016-01-14 15:08                     ` Steve Wise
2016-01-14 17:40                     ` Leon Romanovsky
     [not found]                       ` <20160114174014.GA30615-2ukJVAZIZ/Y@public.gmane.org>
2016-01-15 19:47                         ` Steve Wise
     [not found]                           ` <56994CE2.1060205-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
2016-01-19 18:44                             ` Doug Ledford
     [not found]                               ` <569E8402.2080001-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-01-19 18:52                                 ` Steve Wise

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.