mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 19:08:57 +09:00
batman-adv: Use default throughput value on cfg80211 error
commit3f3f87325dupstream. A wifi interface should never be handled like an ethernet devices. The parser of the cfg80211 output must therefore skip the ethtool code when cfg80211_get_station returned an error. Fixes:f44a3ae9a2("batman-adv: refactor wifi interface detection") Signed-off-by: Sven Eckelmann <sven@narfation.org> Reviewed-by: Marek Lindner <mareklindner@neomailbox.ch> Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
65927b3350
commit
1c5a456ac6
@@ -100,8 +100,10 @@ static u32 batadv_v_elp_get_throughput(struct batadv_hardif_neigh_node *neigh)
|
||||
*/
|
||||
return 0;
|
||||
}
|
||||
if (!ret)
|
||||
return sinfo.expected_throughput / 100;
|
||||
if (ret)
|
||||
goto default_throughput;
|
||||
|
||||
return sinfo.expected_throughput / 100;
|
||||
}
|
||||
|
||||
/* unsupported WiFi driver version */
|
||||
|
||||
Reference in New Issue
Block a user