All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/5 v4] netlink: Fix portid type in netlink_notify
@ 2015-04-12 22:52 Richard Weinberger
  2015-04-12 22:52 ` [PATCH 2/5 v4] nfc: Fix portid type in urelease_work Richard Weinberger
                   ` (4 more replies)
  0 siblings, 5 replies; 15+ messages in thread
From: Richard Weinberger @ 2015-04-12 22:52 UTC (permalink / raw)
  To: netdev
  Cc: linux-wireless, coreteam, netfilter-devel, linux-kernel, sameo,
	aloisio.almeida, lauro.venancio, davem, kadlec, kaber, pablo,
	Richard Weinberger

portid is an unsigned integer. Fix netlink_notify to
match all other portid user in the kernel.

Signed-off-by: Richard Weinberger <richard@nod.at>
---
 include/linux/netlink.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/netlink.h b/include/linux/netlink.h
index 02fc86d..6835c12 100644
--- a/include/linux/netlink.h
+++ b/include/linux/netlink.h
@@ -134,7 +134,7 @@ struct netlink_callback {
 
 struct netlink_notify {
 	struct net *net;
-	int portid;
+	u32 portid;
 	int protocol;
 };
 
-- 
1.8.4.5


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

end of thread, other threads:[~2015-04-13 20:35 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-12 22:52 [PATCH 1/5 v4] netlink: Fix portid type in netlink_notify Richard Weinberger
2015-04-12 22:52 ` [PATCH 2/5 v4] nfc: Fix portid type in urelease_work Richard Weinberger
2015-04-13 20:35   ` David Miller
2015-04-13 20:35     ` David Miller
2015-04-12 22:52 ` [PATCH 3/5 v4] netfilter: Fix portid types Richard Weinberger
2015-04-13 18:43   ` Pablo Neira Ayuso
2015-04-13 20:35   ` David Miller
2015-04-12 22:52 ` [PATCH 4/5 v4] netfilter: Fix format string of nfnetlink_queue proc file Richard Weinberger
2015-04-13 18:43   ` Pablo Neira Ayuso
2015-04-13 20:35   ` David Miller
2015-04-12 22:52 ` [PATCH 5/5 v4] netfilter: Fix format string of nfnetlink_log " Richard Weinberger
2015-04-13 18:43   ` Pablo Neira Ayuso
2015-04-13 18:43     ` Pablo Neira Ayuso
2015-04-13 20:35   ` David Miller
2015-04-13 20:35 ` [PATCH 1/5 v4] netlink: Fix portid type in netlink_notify David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.