projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3d0d26c
)
netlink: Fix portid type in netlink_notify
author
Richard Weinberger
<richard@nod.at>
Sun, 12 Apr 2015 22:52:35 +0000
(
00:52
+0200)
committer
David S. Miller
<davem@davemloft.net>
Mon, 13 Apr 2015 20:35:16 +0000
(16:35 -0400)
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>
include/linux/netlink.h
patch
|
blob
|
blame
|
history
diff --git
a/include/linux/netlink.h
b/include/linux/netlink.h
index 02fc86d2348e2157d19cd4c16c4574ef86ac4d07..6835c1279df77328894ef9bc1396d786e7f29dec 100644
(file)
--- 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;
};