diff options
| author | Jens Axboe <jaxboe@fusionio.com> | 2011-03-10 08:52:07 +0100 | 
|---|---|---|
| committer | Jens Axboe <jaxboe@fusionio.com> | 2011-03-10 08:52:07 +0100 | 
| commit | 7eaceaccab5f40bbfda044629a6298616aeaed50 (patch) | |
| tree | 33954d12f63e25a47eb6d86ef3d3d0a5e62bf752 /drivers/md/linear.c | |
| parent | 73c101011926c5832e6e141682180c4debe2cf45 (diff) | |
| download | olio-linux-3.10-7eaceaccab5f40bbfda044629a6298616aeaed50.tar.xz olio-linux-3.10-7eaceaccab5f40bbfda044629a6298616aeaed50.zip  | |
block: remove per-queue plugging
Code has been converted over to the new explicit on-stack plugging,
and delay users have been converted to use the new API for that.
So lets kill off the old plugging along with aops->sync_page().
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'drivers/md/linear.c')
| -rw-r--r-- | drivers/md/linear.c | 17 | 
1 files changed, 0 insertions, 17 deletions
diff --git a/drivers/md/linear.c b/drivers/md/linear.c index 8a2f767f26d..38861b5b9d9 100644 --- a/drivers/md/linear.c +++ b/drivers/md/linear.c @@ -87,22 +87,6 @@ static int linear_mergeable_bvec(struct request_queue *q,  	return maxsectors << 9;  } -static void linear_unplug(struct request_queue *q) -{ -	mddev_t *mddev = q->queuedata; -	linear_conf_t *conf; -	int i; - -	rcu_read_lock(); -	conf = rcu_dereference(mddev->private); - -	for (i=0; i < mddev->raid_disks; i++) { -		struct request_queue *r_queue = bdev_get_queue(conf->disks[i].rdev->bdev); -		blk_unplug(r_queue); -	} -	rcu_read_unlock(); -} -  static int linear_congested(void *data, int bits)  {  	mddev_t *mddev = data; @@ -225,7 +209,6 @@ static int linear_run (mddev_t *mddev)  	md_set_array_sectors(mddev, linear_size(mddev, 0, 0));  	blk_queue_merge_bvec(mddev->queue, linear_mergeable_bvec); -	mddev->queue->unplug_fn = linear_unplug;  	mddev->queue->backing_dev_info.congested_fn = linear_congested;  	mddev->queue->backing_dev_info.congested_data = mddev;  	md_integrity_register(mddev);  |