diff options
| author | Jens Axboe <[email protected]> | 2018-11-01 22:36:27 +0000 |
|---|---|---|
| committer | Jens Axboe <[email protected]> | 2018-11-07 20:42:32 +0000 |
| commit | f664a3cc17b7d0a2bc3b3ab96181e1029b0ec0e6 (patch) | |
| tree | d49b6866c48f12638ae5e8dcbddf97d0074243e4 /drivers/scsi/scsi.c | |
| parent | scsi: provide mq_ops->busy() hook (diff) | |
| download | kernel-f664a3cc17b7d0a2bc3b3ab96181e1029b0ec0e6.tar.gz kernel-f664a3cc17b7d0a2bc3b3ab96181e1029b0ec0e6.zip | |
scsi: kill off the legacy IO path
This removes the legacy (non-mq) IO path for SCSI.
Cc: [email protected]
Acked-by: Himanshu Madhani <[email protected]>
Reviewed-by: Hannes Reinecke <[email protected]>
Tested-by: Ming Lei <[email protected]>
Reviewed-by: Omar Sandoval <[email protected]>
Acked-by: Martin K. Petersen <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
Diffstat (limited to 'drivers/scsi/scsi.c')
| -rw-r--r-- | drivers/scsi/scsi.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c index fc1356d101b0..7675ff0ca2ea 100644 --- a/drivers/scsi/scsi.c +++ b/drivers/scsi/scsi.c @@ -780,11 +780,8 @@ MODULE_LICENSE("GPL"); module_param(scsi_logging_level, int, S_IRUGO|S_IWUSR); MODULE_PARM_DESC(scsi_logging_level, "a bit mask of logging levels"); -#ifdef CONFIG_SCSI_MQ_DEFAULT +/* This should go away in the future, it doesn't do anything anymore */ bool scsi_use_blk_mq = true; -#else -bool scsi_use_blk_mq = false; -#endif module_param_named(use_blk_mq, scsi_use_blk_mq, bool, S_IWUSR | S_IRUGO); static int __init init_scsi(void) |
