From: Hannes Frederic Sowa Date: Mon, 14 Dec 2015 22:30:43 +0000 (+0100) Subject: net: fix warnings in 'make htmldocs' by moving macro definition out of field declaration X-Git-Tag: v3.4.111~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca7d623e1e0a028bd7931d153c15c99d11a12211;p=thirdparty%2Fkernel%2Fstable.git net: fix warnings in 'make htmldocs' by moving macro definition out of field declaration commit 7bbadd2d1009575dad675afc16650ebb5aa10612 upstream. Docbook does not like the definition of macros inside a field declaration and adds a warning. Move the definition out. Fixes: 79462ad02e86180 ("net: add validation for the socket syscall protocol argument") Reported-by: kbuild test robot Signed-off-by: Hannes Frederic Sowa Signed-off-by: David S. Miller [lizf: Backported to 3.4: adjust context] Signed-off-by: Zefan Li --- diff --git a/include/net/sock.h b/include/net/sock.h index e2073e02607a7..ddc3737b537e4 100644 --- a/include/net/sock.h +++ b/include/net/sock.h @@ -328,8 +328,8 @@ struct sock { sk_no_check : 2, sk_userlocks : 4, sk_protocol : 8, -#define SK_PROTOCOL_MAX ((u8)~0U) sk_type : 16; +#define SK_PROTOCOL_MAX ((u8)~0U) kmemcheck_bitfield_end(flags); int sk_wmem_queued; gfp_t sk_allocation;