projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
280a306
)
[WIRELESS]: Convert notifications to use rtnl_notify()
author
Thomas Graf
<tgraf@suug.ch>
Tue, 15 Aug 2006 07:36:49 +0000
(
00:36
-0700)
committer
David S. Miller
<davem@sunset.davemloft.net>
Fri, 22 Sep 2006 21:55:00 +0000
(14:55 -0700)
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/wireless.c
patch
|
blob
|
blame
|
history
diff --git
a/net/core/wireless.c
b/net/core/wireless.c
index 348b9da73cc4f83c1c837b0f05d8c9367726e622..3168fca312f7c4d188dd9162f8b3dd43942692b3 100644
(file)
--- a/
net/core/wireless.c
+++ b/
net/core/wireless.c
@@
-85,6
+85,7
@@
#include <linux/wireless.h> /* Pretty obvious */
#include <net/iw_handler.h> /* New driver API */
+#include <net/netlink.h>
#include <asm/uaccess.h> /* copy_to_user() */
@@
-1849,7
+1850,7
@@
static void wireless_nlevent_process(unsigned long data)
struct sk_buff *skb;
while ((skb = skb_dequeue(&wireless_nlevent_queue)))
-
netlink_broadcast(rtnl, skb, 0, RTNLGRP_LINK
, GFP_ATOMIC);
+
rtnl_notify(skb, 0, RTNLGRP_LINK, NULL
, GFP_ATOMIC);
}
static DECLARE_TASKLET(wireless_nlevent_tasklet, wireless_nlevent_process, 0);