[2/6] batman-adv: Count all non-success TX packets as dropped

Message ID 1468782245-12985-2-git-send-email-sven@narfation.org (mailing list archive)
State Accepted, archived
Commit f04a732d2af1c21427d9bf1d2598877dba29c098
Delegated to: Simon Wunderlich
Headers

Commit Message

Sven Eckelmann July 17, 2016, 7:04 p.m. UTC
  A failure during the submission also causes dropped packets.
batadv_interface_tx should therefore also increase the DROPPED counter for
these returns.

Signed-off-by: Sven Eckelmann <sven@narfation.org>
---
 net/batman-adv/soft-interface.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/net/batman-adv/soft-interface.c b/net/batman-adv/soft-interface.c
index cb5b966..5cf41e7 100644
--- a/net/batman-adv/soft-interface.c
+++ b/net/batman-adv/soft-interface.c
@@ -365,7 +365,7 @@  send:
 			ret = batadv_send_skb_via_tt(bat_priv, skb, dst_hint,
 						     vid);
 		}
-		if (ret == NET_XMIT_DROP)
+		if (ret != NET_XMIT_SUCCESS)
 			goto dropped_freed;
 	}