aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChangli Gao <xiaosuo@gmail.com>2013-06-29 00:15:51 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-07-28 16:18:36 -0700
commite533fb01a23b2c572b11f5357c330daba10039a9 (patch)
tree722f025389480bf26a7b49c22427604ec4f73bae /include
parent3f9059aea8ac27ea66c868121e0ecd31b3afaff6 (diff)
downloadkernel_samsung_smdk4412-e533fb01a23b2c572b11f5357c330daba10039a9.zip
kernel_samsung_smdk4412-e533fb01a23b2c572b11f5357c330daba10039a9.tar.gz
kernel_samsung_smdk4412-e533fb01a23b2c572b11f5357c330daba10039a9.tar.bz2
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/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 397921b..3c7d8ba 100644
--- a/include/linux/if_pppox.h
+++ b/include/linux/if_pppox.h
@@ -127,11 +127,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