mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00
8f84985fec
They are same, so unify them as one, pcpu_sw_netstats. Define pcpu_sw_netstat in netdevice.h, remove pcpu_tstats from if_tunnel and remove br_cpu_netstats from br_private.h Cc: Cong Wang <xiyou.wangcong@gmail.com> Cc: Stephen Hemminger <stephen@networkplumber.org> Signed-off-by: Li RongQing <roy.qing.li@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
16 lines
370 B
C
16 lines
370 B
C
#ifndef _IF_TUNNEL_H_
|
|
#define _IF_TUNNEL_H_
|
|
|
|
#include <linux/ip.h>
|
|
#include <linux/in6.h>
|
|
#include <uapi/linux/if_tunnel.h>
|
|
#include <linux/u64_stats_sync.h>
|
|
|
|
/*
|
|
* Locking : hash tables are protected by RCU and RTNL
|
|
*/
|
|
|
|
#define for_each_ip_tunnel_rcu(pos, start) \
|
|
for (pos = rcu_dereference(start); pos; pos = rcu_dereference(pos->next))
|
|
|
|
#endif /* _IF_TUNNEL_H_ */
|