diff options
| author | Hiatt, Don <[email protected]> | 2017-08-14 18:17:43 +0000 |
|---|---|---|
| committer | Doug Ledford <[email protected]> | 2017-08-18 18:47:37 +0000 |
| commit | 62ede7779904bc75bdd84f1ff0016113956ce3b4 (patch) | |
| tree | e2040ddaa9a485db2cfc700b75b30004140c9c89 /drivers/infiniband/hw/mlx4/alias_GUID.c | |
| parent | Merge branch 'k.o/for-4.13-rc' into k.o/for-next (diff) | |
| download | kernel-62ede7779904bc75bdd84f1ff0016113956ce3b4.tar.gz kernel-62ede7779904bc75bdd84f1ff0016113956ce3b4.zip | |
Add OPA extended LID support
This patch series primarily increases sizes of variables that hold
lid values from 16 to 32 bits. Additionally, it adds a check in
the IB mad stack to verify a properly formatted MAD when OPA
extended LIDs are used.
Signed-off-by: Don Hiatt <[email protected]>
Reviewed-by: Dennis Dalessandro <[email protected]>
Signed-off-by: Doug Ledford <[email protected]>
Diffstat (limited to 'drivers/infiniband/hw/mlx4/alias_GUID.c')
| -rw-r--r-- | drivers/infiniband/hw/mlx4/alias_GUID.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mlx4/alias_GUID.c b/drivers/infiniband/hw/mlx4/alias_GUID.c index 5a897b0106a9..0e4f60cfc59d 100644 --- a/drivers/infiniband/hw/mlx4/alias_GUID.c +++ b/drivers/infiniband/hw/mlx4/alias_GUID.c @@ -528,7 +528,7 @@ static int set_guid_rec(struct ib_device *ibdev, memset(&guid_info_rec, 0, sizeof (struct ib_sa_guidinfo_rec)); - guid_info_rec.lid = cpu_to_be16((u16)attr.lid); + guid_info_rec.lid = ib_lid_be16(attr.lid); guid_info_rec.block_num = index; memcpy(guid_info_rec.guid_info_list, rec_det->all_recs, |
