]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/8021q/vlan.h
Merge branch 'nfs-for-2.6.37' of git://git.linux-nfs.org/projects/trondmy/nfs-2.6
[net-next-2.6.git] / net / 8021q / vlan.h
CommitLineData
1da177e4
LT
1#ifndef __BEN_VLAN_802_1Q_INC__
2#define __BEN_VLAN_802_1Q_INC__
3
4#include <linux/if_vlan.h>
9618e2ff 5#include <linux/u64_stats_sync.h>
1da177e4 6
22d1ba74
PM
7
8/**
9 * struct vlan_priority_tci_mapping - vlan egress priority mappings
10 * @priority: skb priority
11 * @vlan_qos: vlan priority: (skb->priority << 13) & 0xE000
12 * @next: pointer to next struct
13 */
14struct vlan_priority_tci_mapping {
15 u32 priority;
9bb8582e 16 u16 vlan_qos;
22d1ba74
PM
17 struct vlan_priority_tci_mapping *next;
18};
19
9793241f
ED
20
21/**
22 * struct vlan_rx_stats - VLAN percpu rx stats
23 * @rx_packets: number of received packets
24 * @rx_bytes: number of received bytes
9618e2ff
ED
25 * @rx_multicast: number of received multicast packets
26 * @syncp: synchronization point for 64bit counters
9793241f
ED
27 * @rx_errors: number of errors
28 */
29struct vlan_rx_stats {
9618e2ff
ED
30 u64 rx_packets;
31 u64 rx_bytes;
32 u64 rx_multicast;
33 struct u64_stats_sync syncp;
34 unsigned long rx_errors;
9793241f
ED
35};
36
22d1ba74
PM
37/**
38 * struct vlan_dev_info - VLAN private device data
39 * @nr_ingress_mappings: number of ingress priority mappings
40 * @ingress_priority_map: ingress priority mappings
41 * @nr_egress_mappings: number of egress priority mappings
42 * @egress_priority_map: hash of egress priority mappings
43 * @vlan_id: VLAN identifier
44 * @flags: device flags
45 * @real_dev: underlying netdevice
46 * @real_dev_addr: address of underlying netdevice
47 * @dent: proc dir entry
48 * @cnt_inc_headroom_on_tx: statistic - number of skb expansions on TX
49 * @cnt_encap_on_xmit: statistic - number of skb encapsulations on TX
9793241f 50 * @vlan_rx_stats: ptr to percpu rx stats
22d1ba74
PM
51 */
52struct vlan_dev_info {
53 unsigned int nr_ingress_mappings;
54 u32 ingress_priority_map[8];
55 unsigned int nr_egress_mappings;
56 struct vlan_priority_tci_mapping *egress_priority_map[16];
57
9bb8582e
PM
58 u16 vlan_id;
59 u16 flags;
22d1ba74
PM
60
61 struct net_device *real_dev;
62 unsigned char real_dev_addr[ETH_ALEN];
63
64 struct proc_dir_entry *dent;
65 unsigned long cnt_inc_headroom_on_tx;
66 unsigned long cnt_encap_on_xmit;
7d720c3e 67 struct vlan_rx_stats __percpu *vlan_rx_stats;
22d1ba74
PM
68};
69
70static inline struct vlan_dev_info *vlan_dev_info(const struct net_device *dev)
71{
72 return netdev_priv(dev);
73}
74
1da177e4 75/* found in vlan_dev.c */
1da177e4 76int vlan_skb_recv(struct sk_buff *skb, struct net_device *dev,
122952fc 77 struct packet_type *ptype, struct net_device *orig_dev);
c17d8874 78void vlan_dev_set_ingress_priority(const struct net_device *dev,
9bb8582e 79 u32 skb_prio, u16 vlan_prio);
c17d8874 80int vlan_dev_set_egress_priority(const struct net_device *dev,
9bb8582e 81 u32 skb_prio, u16 vlan_prio);
b3ce0325 82int vlan_dev_change_flags(const struct net_device *dev, u32 flag, u32 mask);
c17d8874 83void vlan_dev_get_realdev_name(const struct net_device *dev, char *result);
1da177e4 84
9bb8582e 85int vlan_check_real_dev(struct net_device *real_dev, u16 vlan_id);
07b5b17e
PM
86void vlan_setup(struct net_device *dev);
87int register_vlan_dev(struct net_device *dev);
23289a37 88void unregister_vlan_dev(struct net_device *dev, struct list_head *head);
07b5b17e 89
7750f403 90static inline u32 vlan_get_ingress_priority(struct net_device *dev,
9bb8582e 91 u16 vlan_tci)
7750f403
PM
92{
93 struct vlan_dev_info *vip = vlan_dev_info(dev);
94
05423b24 95 return vip->ingress_priority_map[(vlan_tci >> VLAN_PRIO_SHIFT) & 0x7];
7750f403
PM
96}
97
70c03b49
PM
98#ifdef CONFIG_VLAN_8021Q_GVRP
99extern int vlan_gvrp_request_join(const struct net_device *dev);
100extern void vlan_gvrp_request_leave(const struct net_device *dev);
101extern int vlan_gvrp_init_applicant(struct net_device *dev);
102extern void vlan_gvrp_uninit_applicant(struct net_device *dev);
103extern int vlan_gvrp_init(void);
104extern void vlan_gvrp_uninit(void);
105#else
106static inline int vlan_gvrp_request_join(const struct net_device *dev) { return 0; }
107static inline void vlan_gvrp_request_leave(const struct net_device *dev) {}
108static inline int vlan_gvrp_init_applicant(struct net_device *dev) { return 0; }
109static inline void vlan_gvrp_uninit_applicant(struct net_device *dev) {}
110static inline int vlan_gvrp_init(void) { return 0; }
111static inline void vlan_gvrp_uninit(void) {}
112#endif
113
b3020061
SH
114extern const char vlan_fullname[];
115extern const char vlan_version[];
116extern int vlan_netlink_init(void);
117extern void vlan_netlink_fini(void);
07b5b17e
PM
118
119extern struct rtnl_link_ops vlan_link_ops;
120
802fb176
PE
121static inline int is_vlan_dev(struct net_device *dev)
122{
123 return dev->priv_flags & IFF_802_1Q_VLAN;
124}
125
d9ed0f0e
PE
126extern int vlan_net_id;
127
a59a8c1c
PE
128struct proc_dir_entry;
129
d9ed0f0e 130struct vlan_net {
a59a8c1c
PE
131 /* /proc/net/vlan */
132 struct proc_dir_entry *proc_vlan_dir;
133 /* /proc/net/vlan/config */
134 struct proc_dir_entry *proc_vlan_conf;
7a17a2f7
PE
135 /* Determines interface naming scheme. */
136 unsigned short name_type;
d9ed0f0e
PE
137};
138
1da177e4 139#endif /* !(__BEN_VLAN_802_1Q_INC__) */