IB/core: Fix mgid key handling in SA agent multicast data-base
authorJack Morgenstein <jackm@dev.mellanox.co.il>
Wed, 19 Nov 2014 09:08:58 +0000 (11:08 +0200)
committerRoland Dreier <roland@purestorage.com>
Tue, 16 Dec 2014 02:10:13 +0000 (18:10 -0800)
commit514f3ddffe7c366af7921fdddaae3811e3efce03
tree5f158d4b840b917060e26115b46c01895aff735b
parentc1bd6cde8efda081af9d4f1fa4105e114b9b5cf5
IB/core: Fix mgid key handling in SA agent multicast data-base

Applications can request that the SM assign an MGID by passing a mcast
member request containing MGID = 0. When the SM responds by sending
the allocated MGID, this MGID replaces the 0-MGID in the multicast group.

However, the MGID field in the group is also the key field in the IB
core multicast code rbtree containing the multicast groups for the
port.

Since this is a key field, correct handling requires that the group
entry be deleted from the rbtree and then re-inserted with the new
key, so that the table structure is properly maintained.

The current code does not do this correctly.  Correct operation
requires that if the key-field gid has changed at all, it should be
deleted and re-inserted.

Note that when inserting, if the new MGID is zero (not the case here
but the code should handle this correctly), we allow duplicate entries
for 0-MGIDs.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Acked-by: Sean Hefty <sean.hefty@intel.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
drivers/infiniband/core/multicast.c