index
:
openwrt.git
OpenWrt Source Repository
log msg
author
committer
range
feature/odhcpd_odhcp6c_udhcpc-capsdrop
linksys3200ac-master
master
about
summary
refs
log
tree
commit
diff
path:
root
/
package
/
mac80211
/
patches
/
910-fix-reversed-warn-on-workqueue.patch
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'package/mac80211/patches/910-fix-reversed-warn-on-workqueue.patch')
-rw-r--r--
package/mac80211/patches/910-fix-reversed-warn-on-workqueue.patch
11
1 files changed, 11 insertions, 0 deletions
diff --git a/package/mac80211/patches/910-fix-reversed-warn-on-workqueue.patch b/package/mac80211/patches/910-fix-reversed-warn-on-workqueue.patch
new file mode 100644
index 0000000000..b5985741ca
--- /dev/null
+++ b/
package/mac80211/patches/910-fix-reversed-warn-on-workqueue.patch
@@ -0,0 +1,11 @@
+--- a/compat/compat-2.6.36.c
++++ b/compat/compat-2.6.36.c
+@@ -101,7 +101,7 @@ EXPORT_SYMBOL_GPL(system_nrt_wq);
+ void compat_system_workqueue_create()
+ {
+ system_nrt_wq = create_singlethread_workqueue("events_nrt");
+- WARN_ON(system_nrt_wq);
++ WARN_ON(!system_nrt_wq);
+ }
+
+ void compat_system_workqueue_destroy()