projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
20b8364
)
strparser: destroy workqueue on module exit
author
WANG Cong
<xiyou.wangcong@gmail.com>
Fri, 3 Mar 2017 20:21:14 +0000
(12:21 -0800)
committer
David S. Miller
<davem@davemloft.net>
Sat, 4 Mar 2017 04:43:26 +0000
(20:43 -0800)
Fixes:
43a0c6751a32
("strparser: Stream parser for messages")
Cc: Tom Herbert <tom@herbertland.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/strparser/strparser.c
patch
|
blob
|
history
diff --git
a/net/strparser/strparser.c
b/net/strparser/strparser.c
index
41adf36
..
b5c279b
100644
(file)
--- a/
net/strparser/strparser.c
+++ b/
net/strparser/strparser.c
@@
-504,6
+504,7
@@
static int __init strp_mod_init(void)
static void __exit strp_mod_exit(void)
{
+ destroy_workqueue(strp_wq);
}
module_init(strp_mod_init);
module_exit(strp_mod_exit);