mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-27 10:01:39 -05:00
Currently if a user enqueue a work item using schedule_delayed_work() the used wq is "system_wq" (per-cpu wq) while queue_delayed_work() use WORK_CPU_UNBOUND (used when a cpu is not specified). The same applies to schedule_work() that is using system_wq and queue_work(), that makes use again of WORK_CPU_UNBOUND. This lack of consistentcy cannot be addressed without refactoring the API. alloc_workqueue() treats all queues as per-CPU by default, while unbound workqueues must opt-in via WQ_UNBOUND. This default is suboptimal: most workloads benefit from unbound queues, allowing the scheduler to place worker threads where they’re needed and reducing noise when CPUs are isolated. This default is suboptimal: most workloads benefit from unbound queues, allowing the scheduler to place worker threads where they’re needed and reducing noise when CPUs are isolated. This patch adds a new WQ_PERCPU flag to explicitly request the use of the per-CPU behavior. Both flags coexist for one release cycle to allow callers to transition their calls. Once migration is complete, WQ_UNBOUND can be removed and unbound will become the implicit default. With the introduction of the WQ_PERCPU flag (equivalent to !WQ_UNBOUND), any alloc_workqueue() caller that doesn’t explicitly specify WQ_UNBOUND must now use WQ_PERCPU. All existing users have been updated accordingly. Suggested-by: Tejun Heo <tj@kernel.org> Signed-off-by: Marco Crivellari <marco.crivellari@suse.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
96 lines
1.8 KiB
C
96 lines
1.8 KiB
C
/* Copyright (c) 2012 Coraid, Inc. See COPYING for GPL terms. */
|
|
/*
|
|
* aoemain.c
|
|
* Module initialization routines, discover timer
|
|
*/
|
|
|
|
#include <linux/hdreg.h>
|
|
#include <linux/blkdev.h>
|
|
#include <linux/module.h>
|
|
#include <linux/skbuff.h>
|
|
#include "aoe.h"
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_AUTHOR("Sam Hopkins <sah@coraid.com>");
|
|
MODULE_DESCRIPTION("AoE block/char driver for 2.6.2 and newer 2.6 kernels");
|
|
MODULE_VERSION(VERSION);
|
|
|
|
static struct timer_list timer;
|
|
struct workqueue_struct *aoe_wq;
|
|
|
|
static void discover_timer(struct timer_list *t)
|
|
{
|
|
mod_timer(t, jiffies + HZ * 60); /* one minute */
|
|
|
|
aoecmd_cfg(0xffff, 0xff);
|
|
}
|
|
|
|
static void __exit
|
|
aoe_exit(void)
|
|
{
|
|
timer_delete_sync(&timer);
|
|
|
|
aoenet_exit();
|
|
unregister_blkdev(AOE_MAJOR, DEVICE_NAME);
|
|
aoecmd_exit();
|
|
aoechr_exit();
|
|
aoedev_exit();
|
|
aoeblk_exit(); /* free cache after de-allocating bufs */
|
|
destroy_workqueue(aoe_wq);
|
|
}
|
|
|
|
static int __init
|
|
aoe_init(void)
|
|
{
|
|
int ret;
|
|
|
|
aoe_wq = alloc_workqueue("aoe_wq", WQ_PERCPU, 0);
|
|
if (!aoe_wq)
|
|
return -ENOMEM;
|
|
|
|
ret = aoedev_init();
|
|
if (ret)
|
|
goto dev_fail;
|
|
ret = aoechr_init();
|
|
if (ret)
|
|
goto chr_fail;
|
|
ret = aoeblk_init();
|
|
if (ret)
|
|
goto blk_fail;
|
|
ret = aoenet_init();
|
|
if (ret)
|
|
goto net_fail;
|
|
ret = aoecmd_init();
|
|
if (ret)
|
|
goto cmd_fail;
|
|
ret = register_blkdev(AOE_MAJOR, DEVICE_NAME);
|
|
if (ret < 0) {
|
|
printk(KERN_ERR "aoe: can't register major\n");
|
|
goto blkreg_fail;
|
|
}
|
|
printk(KERN_INFO "aoe: AoE v%s initialised.\n", VERSION);
|
|
|
|
timer_setup(&timer, discover_timer, 0);
|
|
discover_timer(&timer);
|
|
return 0;
|
|
blkreg_fail:
|
|
aoecmd_exit();
|
|
cmd_fail:
|
|
aoenet_exit();
|
|
net_fail:
|
|
aoeblk_exit();
|
|
blk_fail:
|
|
aoechr_exit();
|
|
chr_fail:
|
|
aoedev_exit();
|
|
dev_fail:
|
|
destroy_workqueue(aoe_wq);
|
|
|
|
printk(KERN_INFO "aoe: initialisation failure.\n");
|
|
return ret;
|
|
}
|
|
|
|
module_init(aoe_init);
|
|
module_exit(aoe_exit);
|
|
|