diff options
author | Richard Weinberger <richard@nod.at> | 2015-04-12 18:52:35 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-04-13 16:35:16 -0400 |
commit | 0392d099ab29767b8d7d4d1d29e8020f8abe943f (patch) | |
tree | 40553a0f777d6042202c0793dbad7a330b6b53f0 | |
parent | 3d0d26c7976bf190c3f1d2efbc31462db8246bc0 (diff) |
netlink: Fix portid type in netlink_notify
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>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | 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 02fc86d2348e..6835c1279df7 100644 --- a/include/linux/netlink.h +++ b/include/linux/netlink.h | |||
@@ -134,7 +134,7 @@ struct netlink_callback { | |||
134 | 134 | ||
135 | struct netlink_notify { | 135 | struct netlink_notify { |
136 | struct net *net; | 136 | struct net *net; |
137 | int portid; | 137 | u32 portid; |
138 | int protocol; | 138 | int protocol; |
139 | }; | 139 | }; |
140 | 140 | ||