diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-07-10 11:37:41 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-07-10 11:37:41 -0700 |
commit | a805cbf4c4d9e220e7512e92013e7996b834e78c (patch) | |
tree | 9a684cfbbea664546110d36d96a21ff0eb16ab65 /kernel | |
parent | b3e87bdd5cbca4ee520d899a55e92c0422d59c13 (diff) | |
parent | 5a6024f1604eef119cf3a6fa413fe0261a81a8f3 (diff) | |
download | linux-stable-a805cbf4c4d9e220e7512e92013e7996b834e78c.tar.gz linux-stable-a805cbf4c4d9e220e7512e92013e7996b834e78c.tar.bz2 linux-stable-a805cbf4c4d9e220e7512e92013e7996b834e78c.zip |
Merge branch 'for-3.16-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq
Pull workqueue fixes from Tejun Heo:
"Two workqueue fixes. Both are one liners. One fixes missing uevent
for workqueue files on sysfs. The other one fixes missing zeroing of
NUMA cpu masks which can lead to oopses among other things"
* 'for-3.16-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq:
workqueue: zero cpumask of wq_numa_possible_cpumask on init
workqueue: fix dev_set_uevent_suppress() imbalance
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/workqueue.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 6203d2900877..35974ac69600 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c @@ -3284,6 +3284,7 @@ int workqueue_sysfs_register(struct workqueue_struct *wq) } } + dev_set_uevent_suppress(&wq_dev->dev, false); kobject_uevent(&wq_dev->dev.kobj, KOBJ_ADD); return 0; } @@ -4879,7 +4880,7 @@ static void __init wq_numa_init(void) BUG_ON(!tbl); for_each_node(node) - BUG_ON(!alloc_cpumask_var_node(&tbl[node], GFP_KERNEL, + BUG_ON(!zalloc_cpumask_var_node(&tbl[node], GFP_KERNEL, node_online(node) ? node : NUMA_NO_NODE)); for_each_possible_cpu(cpu) { |