Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3c209620 authored by Yossi Etigin's avatar Yossi Etigin Committed by Roland Dreier
Browse files

IPoIB: Do not print error messages for multicast join retries



When IPoIB tries to join a multicast group, and the SA module's SM
address handle is NULL (because of an SM change, etc), the join
returns with -EAGAIN status.  In that case, don't print an error
message unless multicast debugging is enabled.

Signed-off-by: default avatarYossi Etigin <yosefe@voltaire.com>
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent cbbe1efa
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -409,7 +409,7 @@ static int ipoib_mcast_join_complete(int status,
	}
	}


	if (mcast->logcount++ < 20) {
	if (mcast->logcount++ < 20) {
		if (status == -ETIMEDOUT) {
		if (status == -ETIMEDOUT || status == -EAGAIN) {
			ipoib_dbg_mcast(priv, "multicast join failed for %pI6, status %d\n",
			ipoib_dbg_mcast(priv, "multicast join failed for %pI6, status %d\n",
					mcast->mcmember.mgid.raw, status);
					mcast->mcmember.mgid.raw, status);
		} else {
		} else {