aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390
diff options
context:
space:
mode:
authorJens Axboe <jaxboe@fusionio.com>2010-08-23 14:02:44 +0200
committerJens Axboe <jaxboe@fusionio.com>2010-08-23 14:02:44 +0200
commit52cc2eef31587b22ce9fbe77b064a031a9613ab0 (patch)
treeae33f1efc3e39db2a16c4cdd78aa861a1e022d75 /drivers/s390
parentblock: add function call to switch the IO scheduler from a driver (diff)
downloadlinux-dev-52cc2eef31587b22ce9fbe77b064a031a9613ab0.tar.xz
linux-dev-52cc2eef31587b22ce9fbe77b064a031a9613ab0.zip
block: switch s390 tape_block and mg_disk to elevator_change()
Now that we have this API, switch the two in-kernel users to it. Resolves an oops introduced by commit 1abec4fdbb142e3ccb6ce99832fae42129134a96. Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'drivers/s390')
-rw-r--r--drivers/s390/char/tape_block.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/s390/char/tape_block.c b/drivers/s390/char/tape_block.c
index b7de02525ec9..85cf607fc78f 100644
--- a/drivers/s390/char/tape_block.c
+++ b/drivers/s390/char/tape_block.c
@@ -217,8 +217,7 @@ tapeblock_setup_device(struct tape_device * device)
if (!blkdat->request_queue)
return -ENOMEM;
- elevator_exit(blkdat->request_queue->elevator);
- rc = elevator_init(blkdat->request_queue, "noop");
+ rc = elevator_change(blkdat->request_queue, "noop");
if (rc)
goto cleanup_queue;