RDMA/rxe: Set sys_image_guid to be aligned with HW IB devices
authorZhu Yanjun <yanjunz@mellanox.com>
Mon, 23 Mar 2020 11:28:00 +0000 (13:28 +0200)
committerJason Gunthorpe <jgg@mellanox.com>
Thu, 26 Mar 2020 19:45:29 +0000 (16:45 -0300)
commitd0ca2c35dd15a3d989955caec02beea02f735ee6
tree44652641617cd12586f33c08cc520f95335685f3
parent23ab5261e29b6b95803ee8dc919ae76e260b358d
RDMA/rxe: Set sys_image_guid to be aligned with HW IB devices

The RXE driver doesn't set sys_image_guid and user space applications see
zeros. This causes to pyverbs tests to fail with the following traceback,
because the IBTA spec requires to have valid sys_image_guid.

 Traceback (most recent call last):
   File "./tests/test_device.py", line 51, in test_query_device
     self.verify_device_attr(attr)
   File "./tests/test_device.py", line 74, in verify_device_attr
     assert attr.sys_image_guid != 0

In order to fix it, set sys_image_guid to be equal to node_guid.

Before:
 5: rxe0: ... node_guid 5054:00ff:feaa:5363 sys_image_guid
 0000:0000:0000:0000

After:
 5: rxe0: ... node_guid 5054:00ff:feaa:5363 sys_image_guid
 5054:00ff:feaa:5363

Fixes: 8700e3e7c485 ("Soft RoCE driver")
Link: https://lore.kernel.org/r/20200323112800.1444784-1-leon@kernel.org
Signed-off-by: Zhu Yanjun <yanjunz@mellanox.com>
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/sw/rxe/rxe.c