forked from Minki/linux
c833484e5f
In case of wireless interface retrieve the throughput by querying cfg80211. To perform this call a separate work must be scheduled because the function may sleep and this is not allowed within an RCU protected context (RCU in this case is used to iterate over all the neighbours). Use ethtool to retrieve information about an Ethernet link like HALF/FULL_DUPLEX and advertised bandwidth (e.g. 100/10Mbps). The metric is updated each time a new ELP packet is sent, this way it is possible to timely react to a metric variation which can imply (for example) a neighbour disconnection. Signed-off-by: Antonio Quartulli <antonio@open-mesh.com> Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch>
34 lines
1.2 KiB
C
34 lines
1.2 KiB
C
/* Copyright (C) 2013-2016 B.A.T.M.A.N. contributors:
|
|
*
|
|
* Linus Lüssing, Marek Lindner
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of version 2 of the GNU General Public
|
|
* License as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "main.h"
|
|
|
|
#ifndef _NET_BATMAN_ADV_BAT_V_ELP_H_
|
|
#define _NET_BATMAN_ADV_BAT_V_ELP_H_
|
|
|
|
struct sk_buff;
|
|
struct work_struct;
|
|
|
|
int batadv_v_elp_iface_enable(struct batadv_hard_iface *hard_iface);
|
|
void batadv_v_elp_iface_disable(struct batadv_hard_iface *hard_iface);
|
|
void batadv_v_elp_primary_iface_set(struct batadv_hard_iface *primary_iface);
|
|
int batadv_v_elp_packet_recv(struct sk_buff *skb,
|
|
struct batadv_hard_iface *if_incoming);
|
|
void batadv_v_elp_throughput_metric_update(struct work_struct *work);
|
|
|
|
#endif /* _NET_BATMAN_ADV_BAT_V_ELP_H_ */
|