diff options
author | Changli Gao <xiaosuo@gmail.com> | 2013-06-28 12:15:51 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-07-28 19:29:46 -0400 |
commit | 51778da544ca660615ea02b09d395430159b4d0c (patch) | |
tree | 00c67bfb7e6eb23bc18b1eb0f9d534b6f159deb2 /include | |
parent | ea4c218f2c3e67f1bca8078ff1f80d7e0c2ab791 (diff) |
net: Swap ver and type in pppoe_hdr
[ Upstream commit b1a5a34bd0b8767ea689e68f8ea513e9710b671e ]
Ver and type in pppoe_hdr should be swapped as defined by RFC2516
section-4.
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/linux/if_pppox.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/uapi/linux/if_pppox.h b/include/uapi/linux/if_pppox.h index 0b46fd57c8f6..e36a4aecd311 100644 --- a/include/uapi/linux/if_pppox.h +++ b/include/uapi/linux/if_pppox.h | |||
@@ -135,11 +135,11 @@ struct pppoe_tag { | |||
135 | 135 | ||
136 | struct pppoe_hdr { | 136 | struct pppoe_hdr { |
137 | #if defined(__LITTLE_ENDIAN_BITFIELD) | 137 | #if defined(__LITTLE_ENDIAN_BITFIELD) |
138 | __u8 ver : 4; | ||
139 | __u8 type : 4; | 138 | __u8 type : 4; |
139 | __u8 ver : 4; | ||
140 | #elif defined(__BIG_ENDIAN_BITFIELD) | 140 | #elif defined(__BIG_ENDIAN_BITFIELD) |
141 | __u8 type : 4; | ||
142 | __u8 ver : 4; | 141 | __u8 ver : 4; |
142 | __u8 type : 4; | ||
143 | #else | 143 | #else |
144 | #error "Please fix <asm/byteorder.h>" | 144 | #error "Please fix <asm/byteorder.h>" |
145 | #endif | 145 | #endif |