Re: [patch] IB/core: missing curly braces in ib_find_gid()

2015-09-03 Thread Doug Ledford
On 08/18/2015 05:22 AM, Dan Carpenter wrote:
> Smatch says that, based on the indenting, we should probably add curly
> braces here.
> 
> Fixes: 230145ff8124 ('IB/core: Add RoCE GID table management')
> Signed-off-by: Dan Carpenter 

Thanks, applied.

> diff --git a/drivers/infiniband/core/device.c 
> b/drivers/infiniband/core/device.c
> index 258b3f7..5d5bbae 100644
> --- a/drivers/infiniband/core/device.c
> +++ b/drivers/infiniband/core/device.c
> @@ -807,9 +807,10 @@ int ib_find_gid(struct ib_device *device, union ib_gid 
> *gid,
>   for (port = rdma_start_port(device); port <= rdma_end_port(device); 
> ++port) {
>   if (rdma_cap_roce_gid_table(device, port)) {
>   if (!ib_cache_gid_find_by_port(device, gid, port,
> -NULL, index))
> +NULL, index)) {
>   *port_num = port;
>   return 0;
> + }
>   }
>  
>   for (i = 0; i < device->port_immutable[port].gid_tbl_len; ++i) {
> 


-- 
Doug Ledford 
  GPG KeyID: 0E572FDD




signature.asc
Description: OpenPGP digital signature


Re: [patch] IB/core: missing curly braces in ib_find_gid()

2015-08-30 Thread Doug Ledford
On 08/30/2015 12:59 AM, Or Gerlitz wrote:
 On Fri, Aug 28, 2015 at 9:02 PM, Doug Ledford dledf...@redhat.com wrote:
 On 08/28/2015 09:10 PM, ira.weiny wrote:
 On Tue, Aug 18, 2015 at 12:22:10PM +0300, Dan Carpenter wrote:
 Smatch says that, based on the indenting, we should probably add curly
 braces here.

 Fixes: 230145ff8124 ('IB/core: Add RoCE GID table management')
 Signed-off-by: Dan Carpenter dan.carpen...@oracle.com


 Reviewed-by: Ira Weiny ira.we...@intel.com

 I've picked this patch up (earlier today), so I missed your reviewed-by:
 tag.  Added.
 
 wait, Doug, when the offending patch goes upstream, their commit ID
 will not be the one
 denoted here, right?

Fair point...

 I would suggest that you either hold off with
 this fix till the other patch
 goes upstream in 4,3-rc1 and you have a proper ID

I have a proper ID now.  Since I've put together my final k.o/for-4.3
branch, the ID is fixed.

 or squash it there
 now.

This patch is from someone different than the patch it fixes, so it
wouldn't be right to squash it into their patch.  I fixed up the Fixes:
line instead.

 BTW - the way
 net-next is organized/managed, pre-linus-tree commit ID remain the
 same also after they land there,
 so in that respect and other linux-rdma maintenance related aspects we
 discussed during LPC  - it
 would be good if you can talk to Dave and see how he gets things going
 for net-next

I'm going to be doing things differently for 4.4.  We'll see if that
resolves the issues you are unhappy about.

-- 
Doug Ledford dledf...@redhat.com
  GPG KeyID: 0E572FDD




signature.asc
Description: OpenPGP digital signature


Re: [patch] IB/core: missing curly braces in ib_find_gid()

2015-08-29 Thread Or Gerlitz
On Fri, Aug 28, 2015 at 9:02 PM, Doug Ledford dledf...@redhat.com wrote:
 On 08/28/2015 09:10 PM, ira.weiny wrote:
 On Tue, Aug 18, 2015 at 12:22:10PM +0300, Dan Carpenter wrote:
 Smatch says that, based on the indenting, we should probably add curly
 braces here.

 Fixes: 230145ff8124 ('IB/core: Add RoCE GID table management')
 Signed-off-by: Dan Carpenter dan.carpen...@oracle.com


 Reviewed-by: Ira Weiny ira.we...@intel.com

 I've picked this patch up (earlier today), so I missed your reviewed-by:
 tag.  Added.

wait, Doug, when the offending patch goes upstream, their commit ID
will not be the one
denoted here, right? I would suggest that you either hold off with
this fix till the other patch
goes upstream in 4,3-rc1 and you have a proper ID or squash it there
now. BTW - the way
net-next is organized/managed, pre-linus-tree commit ID remain the
same also after they land there,
so in that respect and other linux-rdma maintenance related aspects we
discussed during LPC  - it
would be good if you can talk to Dave and see how he gets things going
for net-next

Or
--
To unsubscribe from this list: send the line unsubscribe linux-rdma in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [patch] IB/core: missing curly braces in ib_find_gid()

2015-08-28 Thread Doug Ledford
On 08/28/2015 09:10 PM, ira.weiny wrote:
 On Tue, Aug 18, 2015 at 12:22:10PM +0300, Dan Carpenter wrote:
 Smatch says that, based on the indenting, we should probably add curly
 braces here.

 Fixes: 230145ff8124 ('IB/core: Add RoCE GID table management')
 Signed-off-by: Dan Carpenter dan.carpen...@oracle.com

 
 Reviewed-by: Ira Weiny ira.we...@intel.com

I've picked this patch up (earlier today), so I missed your reviewed-by:
tag.  Added.

-- 
Doug Ledford dledf...@redhat.com
  GPG KeyID: 0E572FDD




signature.asc
Description: OpenPGP digital signature


Re: [patch] IB/core: missing curly braces in ib_find_gid()

2015-08-28 Thread ira.weiny
On Tue, Aug 18, 2015 at 12:22:10PM +0300, Dan Carpenter wrote:
 Smatch says that, based on the indenting, we should probably add curly
 braces here.
 
 Fixes: 230145ff8124 ('IB/core: Add RoCE GID table management')
 Signed-off-by: Dan Carpenter dan.carpen...@oracle.com


Reviewed-by: Ira Weiny ira.we...@intel.com

 
 diff --git a/drivers/infiniband/core/device.c 
 b/drivers/infiniband/core/device.c
 index 258b3f7..5d5bbae 100644
 --- a/drivers/infiniband/core/device.c
 +++ b/drivers/infiniband/core/device.c
 @@ -807,9 +807,10 @@ int ib_find_gid(struct ib_device *device, union ib_gid 
 *gid,
   for (port = rdma_start_port(device); port = rdma_end_port(device); 
 ++port) {
   if (rdma_cap_roce_gid_table(device, port)) {
   if (!ib_cache_gid_find_by_port(device, gid, port,
 -NULL, index))
 +NULL, index)) {
   *port_num = port;
   return 0;
 + }
   }
  
   for (i = 0; i  device-port_immutable[port].gid_tbl_len; ++i) {
--
To unsubscribe from this list: send the line unsubscribe linux-rdma in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[patch] IB/core: missing curly braces in ib_find_gid()

2015-08-18 Thread Dan Carpenter
Smatch says that, based on the indenting, we should probably add curly
braces here.

Fixes: 230145ff8124 ('IB/core: Add RoCE GID table management')
Signed-off-by: Dan Carpenter dan.carpen...@oracle.com

diff --git a/drivers/infiniband/core/device.c b/drivers/infiniband/core/device.c
index 258b3f7..5d5bbae 100644
--- a/drivers/infiniband/core/device.c
+++ b/drivers/infiniband/core/device.c
@@ -807,9 +807,10 @@ int ib_find_gid(struct ib_device *device, union ib_gid 
*gid,
for (port = rdma_start_port(device); port = rdma_end_port(device); 
++port) {
if (rdma_cap_roce_gid_table(device, port)) {
if (!ib_cache_gid_find_by_port(device, gid, port,
-  NULL, index))
+  NULL, index)) {
*port_num = port;
return 0;
+   }
}
 
for (i = 0; i  device-port_immutable[port].gid_tbl_len; ++i) {
--
To unsubscribe from this list: send the line unsubscribe linux-rdma in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html