Commit 36026ecc authored by Moni Shoua's avatar Moni Shoua Committed by Roland Dreier

IB/core: Ignore membership bit in ib_find_pkey()

ib_find_pkey() is used as a replacement for ib_find_cached_pkey(), and
the original function ignored the membership bit when searching for a
P_Key, so ib_find_pkey() should ignore the bit too.

In particular, IPoIB turns on the P_Key membership bit of limited
membership P_Keys when creating a child interface and looks for the
full membership P_key.  This broke if a port was a partial member of a
partition when IPoIB switched from ib_find_cached_pkey() to
ib_find_pkey(), and this change fixes things again.
Signed-off-by: default avatarMoni Shoua <monis@voltaire.com>
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent 7a883eaf
...@@ -702,7 +702,7 @@ int ib_find_pkey(struct ib_device *device, ...@@ -702,7 +702,7 @@ int ib_find_pkey(struct ib_device *device,
if (ret) if (ret)
return ret; return ret;
if (pkey == tmp_pkey) { if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) {
*index = i; *index = i;
return 0; return 0;
} }
......
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