All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next 1/2] ipmr: restrict mroute "queue full" warning to related error values
@ 2017-06-21 17:58 Julien Gomes
  2017-06-21 17:58 ` [PATCH net-next 2/2] ip6mr: restrict mroute6 " Julien Gomes
  2017-06-23 17:39 ` [PATCH net-next 1/2] ipmr: restrict mroute " David Miller
  0 siblings, 2 replies; 6+ messages in thread
From: Julien Gomes @ 2017-06-21 17:58 UTC (permalink / raw)
  To: davem; +Cc: netdev, linux-kernel, Julien Gomes

When sending a cache report on mroute_sk, mroute will emit a
"pending queue full" warning for every error value returned by
sock_queue_rcv_skb().
This warning can be misleading, for example on the EPERM error value
that sk_filter() can return.

Restricting this warning to only ENOMEM or ENOBUFS seems more
appropriate.

Signed-off-by: Julien Gomes <julien@arista.com>
---
 net/ipv4/ipmr.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/ipv4/ipmr.c b/net/ipv4/ipmr.c
index a1d521be612b..ace12cddb9de 100644
--- a/net/ipv4/ipmr.c
+++ b/net/ipv4/ipmr.c
@@ -1068,7 +1068,8 @@ static int ipmr_cache_report(struct mr_table *mrt,
 	ret = sock_queue_rcv_skb(mroute_sk, skb);
 	rcu_read_unlock();
 	if (ret < 0) {
-		net_warn_ratelimited("mroute: pending queue full, dropping entries\n");
+		if (ret == -ENOMEM || ret == -ENOBUFS)
+			net_warn_ratelimited("mroute: pending queue full, dropping entries\n");
 		kfree_skb(skb);
 	}
 
-- 
2.13.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-06-23 20:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-21 17:58 [PATCH net-next 1/2] ipmr: restrict mroute "queue full" warning to related error values Julien Gomes
2017-06-21 17:58 ` [PATCH net-next 2/2] ip6mr: restrict mroute6 " Julien Gomes
2017-06-23 17:39 ` [PATCH net-next 1/2] ipmr: restrict mroute " David Miller
2017-06-23 17:52   ` Julien Gomes
2017-06-23 18:47     ` David Miller
2017-06-23 20:17       ` Julien Gomes

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.