Repository : ssh://git@open-mesh.org/batman-adv
On branches: maint,master
commit 41af4814a81c0ff3c228f130578347b2f77805e0 Author: Sven Eckelmann sven@narfation.org Date: Sat Oct 29 09:18:43 2016 +0200
batman-adv: Detect missing primaryif during tp_send as error
The throughput meter detects different situations as problems for the current test. It stops the test after these and reports it to userspace. This also has to be done when the primary interface disappeared during the test.
Fixes: 98d7a766b645 ("batman-adv: throughput meter implementation") Reported-by: Joe Perches joe@perches.com Signed-off-by: Sven Eckelmann sven@narfation.org
41af4814a81c0ff3c228f130578347b2f77805e0 net/batman-adv/tp_meter.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/net/batman-adv/tp_meter.c b/net/batman-adv/tp_meter.c index 2333777..8af1611 100644 --- a/net/batman-adv/tp_meter.c +++ b/net/batman-adv/tp_meter.c @@ -837,6 +837,7 @@ static int batadv_tp_send(void *arg) primary_if = batadv_primary_if_get_selected(bat_priv); if (unlikely(!primary_if)) { err = BATADV_TP_REASON_DST_UNREACHABLE; + tp_vars->reason = err; goto out; }