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

Commit cd65c3c7 authored by Octavian Purdila's avatar Octavian Purdila Committed by David S. Miller
Browse files

net: fix build erros with CONFIG_BUG=n, CONFIG_GENERIC_BUG=n



Fixed build errors introduced by commit 7ad6848c (ip: fix mc_loop
checks for tunnels with multicast outer addresses)

Signed-off-by: default avatarOctavian Purdila <opurdila@ixiacom.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2570a4f5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -338,7 +338,7 @@ static inline int sk_mc_loop(struct sock *sk)
		return inet6_sk(sk)->mc_loop;
#endif
	}
	__WARN();
	WARN_ON(1);
	return 1;
}