diff options
| author | 2018-11-01 16:36:27 -0600 | |
|---|---|---|
| committer | 2018-11-07 13:42:32 -0700 | |
| commit | f664a3cc17b7d0a2bc3b3ab96181e1029b0ec0e6 (patch) | |
| tree | d49b6866c48f12638ae5e8dcbddf97d0074243e4 /drivers/scsi/scsi.c | |
| parent | scsi: provide mq_ops->busy() hook (diff) | |
| download | wireguard-linux-f664a3cc17b7d0a2bc3b3ab96181e1029b0ec0e6.tar.xz wireguard-linux-f664a3cc17b7d0a2bc3b3ab96181e1029b0ec0e6.zip | |
scsi: kill off the legacy IO path
This removes the legacy (non-mq) IO path for SCSI.
Cc: linux-scsi@vger.kernel.org
Acked-by: Himanshu Madhani <himanshu.madhani@cavium.com>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Tested-by: Ming Lei <ming.lei@redhat.com>
Reviewed-by: Omar Sandoval <osandov@fb.com>
Acked-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
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) |
