ovsdb: Synchronize comments and code in ovsdb_file_commit().
[sliver-openvswitch.git] / datapath / linux-2.6 / compat-2.6 / include / linux / if_vlan.h
1 #ifndef __LINUX_IF_VLAN_WRAPPER_H
2 #define __LINUX_IF_VLAN_WRAPPER_H 1
3
4 #include_next <linux/if_vlan.h>
5 #include <linux/skbuff.h>
6
7 /*
8  * The behavior of __vlan_put_tag() has changed over time:
9  *
10  *      - In 2.6.26 and earlier, it adjusted both MAC and network header
11  *        pointers.  (The latter didn't make any sense.)
12  *
13  *      - In 2.6.27 and 2.6.28, it did not adjust any header pointers at all.
14  *
15  *      - In 2.6.29 and later, it adjusts the MAC header pointer only.
16  *
17  * This is the version from 2.6.33.  We unconditionally substitute this version
18  * to avoid the need to guess whether the version in the kernel tree is
19  * acceptable.
20  */
21 #define __vlan_put_tag rpl_vlan_put_tag
22 static inline struct sk_buff *__vlan_put_tag(struct sk_buff *skb, u16 vlan_tci)
23 {
24         struct vlan_ethhdr *veth;
25
26         if (skb_cow_head(skb, VLAN_HLEN) < 0) {
27                 kfree_skb(skb);
28                 return NULL;
29         }
30         veth = (struct vlan_ethhdr *)skb_push(skb, VLAN_HLEN);
31
32         /* Move the mac addresses to the beginning of the new header. */
33         memmove(skb->data, skb->data + VLAN_HLEN, 2 * VLAN_ETH_ALEN);
34         skb->mac_header -= VLAN_HLEN;
35
36         /* first, the ethernet type */
37         veth->h_vlan_proto = htons(ETH_P_8021Q);
38
39         /* now, the TCI */
40         veth->h_vlan_TCI = htons(vlan_tci);
41
42         skb->protocol = htons(ETH_P_8021Q);
43
44         return skb;
45 }
46
47
48 /* All of these were introduced in a single commit preceding 2.6.33, so
49  * presumably all of them or none of them are present. */
50 #ifndef VLAN_PRIO_MASK
51 #define VLAN_PRIO_MASK          0xe000 /* Priority Code Point */
52 #define VLAN_PRIO_SHIFT         13
53 #define VLAN_CFI_MASK           0x1000 /* Canonical Format Indicator */
54 #define VLAN_TAG_PRESENT        VLAN_CFI_MASK
55 #endif
56
57 #endif  /* linux/if_vlan.h wrapper */