Prev: [PATCH 2/2] LIS3LV02D: I2C support
Next: dynamic_debug.h/kernel.h: Remove KBUILD_MODNAME from dynamic_pr_debug
From: David Howells on 1 Oct 2009 09:10 Tejun Heo <tj(a)kernel.org> wrote: > - kacpid_wq = create_singlethread_workqueue("kacpid"); > - bind_workqueue(kacpid_wq); > - kacpi_notify_wq = create_singlethread_workqueue("kacpi_notify"); > - bind_workqueue(kacpi_notify_wq); > - kacpi_hotplug_wq = create_singlethread_workqueue("kacpi_hotplug"); > - bind_workqueue(kacpi_hotplug_wq); > + kacpid_wq = create_workqueue("kacpid"); > + kacpi_notify_wq = create_workqueue("kacpi_notify"); > + kacpi_hotplug_wq = create_workqueue("kacpi_hotplug"); Doesn't that then create one worker thread per CPU and then eschew all but those attached to CPU 0? Sounds excessive, but presumably you deal with that in later patches. David -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |