aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/dm-raid1.c
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2011-01-13 14:59:58 -0500
committerAlasdair G Kergon <agk@redhat.com>2011-01-13 14:59:58 -0500
commit9c4376de98719d2768dd919553843de34bb094a6 (patch)
treec20b10e9018bb51803c535a38a04ee8b12b6d98a /drivers/md/dm-raid1.c
parent4d4d66ab5322fa9b0f51842a76139387a40e1ce9 (diff)
dm: use non reentrant workqueues if equivalent
kmirrord_wq, kcopyd_work and md->wq are created per dm instance and serve only a single work item from the dm instance, so non-reentrant workqueues would provide the same ordering guarantees as ordered ones while allowing CPU affinity and use of the workqueues for other purposes. Switch them to non-reentrant workqueues. Signed-off-by: Tejun Heo <tj@kernel.org> Signed-off-by: Mike Snitzer <snitzer@redhat.com> Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md/dm-raid1.c')
-rw-r--r--drivers/md/dm-raid1.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/md/dm-raid1.c b/drivers/md/dm-raid1.c
index 39917430f9f8..dee326775c60 100644
--- a/drivers/md/dm-raid1.c
+++ b/drivers/md/dm-raid1.c
@@ -1085,7 +1085,8 @@ static int mirror_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1085 ti->num_flush_requests = 1; 1085 ti->num_flush_requests = 1;
1086 ti->num_discard_requests = 1; 1086 ti->num_discard_requests = 1;
1087 1087
1088 ms->kmirrord_wq = alloc_ordered_workqueue("kmirrord", WQ_MEM_RECLAIM); 1088 ms->kmirrord_wq = alloc_workqueue("kmirrord",
1089 WQ_NON_REENTRANT | WQ_MEM_RECLAIM, 0);
1089 if (!ms->kmirrord_wq) { 1090 if (!ms->kmirrord_wq) {
1090 DMERR("couldn't start kmirrord"); 1091 DMERR("couldn't start kmirrord");
1091 r = -ENOMEM; 1092 r = -ENOMEM;
@@ -1414,7 +1415,7 @@ static int mirror_iterate_devices(struct dm_target *ti,
1414 1415
1415static struct target_type mirror_target = { 1416static struct target_type mirror_target = {
1416 .name = "mirror", 1417 .name = "mirror",
1417 .version = {1, 12, 0}, 1418 .version = {1, 12, 1},
1418 .module = THIS_MODULE, 1419 .module = THIS_MODULE,
1419 .ctr = mirror_ctr, 1420 .ctr = mirror_ctr,
1420 .dtr = mirror_dtr, 1421 .dtr = mirror_dtr,