From: Changli Gao Date: Fri, 28 Jun 2013 16:15:51 +0000 (+0800) Subject: net: Swap ver and type in pppoe_hdr X-Git-Tag: v3.0.88~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e533fb01a23b2c572b11f5357c330daba10039a9;p=thirdparty%2Fkernel%2Fstable.git 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/if_pppox.h b/include/linux/if_pppox.h index 397921b09ef9b..3c7d8badcc268 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 " #endif