Commit 254abfd3 authored by Roland Dreier's avatar Roland Dreier

IB/mthca: Fix offset in query_gid method

GuidInfo records have 8 byte GUIDs in them, so an index should be
multiplied by 8 to get an offset.  mthca_query_gid() was incorrectly
multiplying by 16.

Noticed by Leonid Keller <leonid@mellanox.co.il>.
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent 1f4a9067
...@@ -306,7 +306,7 @@ static int mthca_query_gid(struct ib_device *ibdev, u8 port, ...@@ -306,7 +306,7 @@ static int mthca_query_gid(struct ib_device *ibdev, u8 port,
goto out; goto out;
} }
memcpy(gid->raw + 8, out_mad->data + (index % 8) * 16, 8); memcpy(gid->raw + 8, out_mad->data + (index % 8) * 8, 8);
out: out:
kfree(in_mad); kfree(in_mad);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment