summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChangli Gao <xiaosuo@gmail.com>2013-06-29 00:15:51 +0800
committerBen Hutchings <ben@decadent.org.uk>2013-08-02 22:14:47 +0200
commit82a2ab7f349ff50db0670eb4e998c439ce6bfb64 (patch)
tree5e93f9e37c20e1831fccdde8eeafedd356165695 /include
parent665e982a9be4a79d8c85f6855ce7463d756101a0 (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: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'include')
-rw-r--r--include/linux/if_pppox.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/if_pppox.h b/include/linux/if_pppox.h
index b5f927f59f26..732c96247f08 100644
--- a/include/linux/if_pppox.h
+++ b/include/linux/if_pppox.h
@@ -128,11 +128,11 @@ struct pppoe_tag {
struct pppoe_hdr {
#if defined(__LITTLE_ENDIAN_BITFIELD)
- __u8 ver : 4;
__u8 type : 4;
+ __u8 ver : 4;
#elif defined(__BIG_ENDIAN_BITFIELD)
- __u8 type : 4;
__u8 ver : 4;
+ __u8 type : 4;
#else
#error "Please fix <asm/byteorder.h>"
#endif