netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] netlink: fix gcc -Wconversion compilation warning
@ 2010-12-13 17:05 Kirill A. Shutsemov
  2010-12-13 21:35 ` Eric W. Biederman
  0 siblings, 1 reply; 5+ messages in thread
From: Kirill A. Shutsemov @ 2010-12-13 17:05 UTC (permalink / raw)
  To: David S. Miller
  Cc: netdev, Pablo Neira Ayuso, Eric W. Biederman, Dmitry V. Levin,
	linux-kernel, Kirill A. Shutemov

From: Dmitry V. Levin <ldv@altlinux.org>

$ cat << EOF | gcc -Wconversion -xc -S -o/dev/null -
unsigned f(void) {return NLMSG_HDRLEN;}
EOF
<stdin>: In function 'f':
<stdin>:3:26: warning: negative integer implicitly converted to unsigned type

Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name>
---
 include/linux/netlink.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/linux/netlink.h b/include/linux/netlink.h
index 1235669..e2b9e63 100644
--- a/include/linux/netlink.h
+++ b/include/linux/netlink.h
@@ -70,7 +70,7 @@ struct nlmsghdr {
    Check		NLM_F_EXCL
  */
 
-#define NLMSG_ALIGNTO	4
+#define NLMSG_ALIGNTO	4U
 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) )
 #define NLMSG_HDRLEN	 ((int) NLMSG_ALIGN(sizeof(struct nlmsghdr)))
 #define NLMSG_LENGTH(len) ((len)+NLMSG_ALIGN(NLMSG_HDRLEN))
-- 
1.7.3.3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-12-18  6:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-13 17:05 [PATCH] netlink: fix gcc -Wconversion compilation warning Kirill A. Shutsemov
2010-12-13 21:35 ` Eric W. Biederman
2010-12-14 11:27   ` Kirill A. Shutemov
2010-12-17 20:02   ` David Miller
2010-12-18  6:58     ` Eric W. Biederman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).