diff options
author | Jens Axboe <axboe@kernel.dk> | 2018-11-01 18:36:27 -0400 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-11-07 15:42:32 -0500 |
commit | f664a3cc17b7d0a2bc3b3ab96181e1029b0ec0e6 (patch) | |
tree | d49b6866c48f12638ae5e8dcbddf97d0074243e4 /drivers/scsi/scsi.c | |
parent | 3a7ea2c483a53fc89e336f69c6ee1d7defe00811 (diff) |
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"); | |||
780 | module_param(scsi_logging_level, int, S_IRUGO|S_IWUSR); | 780 | module_param(scsi_logging_level, int, S_IRUGO|S_IWUSR); |
781 | MODULE_PARM_DESC(scsi_logging_level, "a bit mask of logging levels"); | 781 | MODULE_PARM_DESC(scsi_logging_level, "a bit mask of logging levels"); |
782 | 782 | ||
783 | #ifdef CONFIG_SCSI_MQ_DEFAULT | 783 | /* This should go away in the future, it doesn't do anything anymore */ |
784 | bool scsi_use_blk_mq = true; | 784 | bool scsi_use_blk_mq = true; |
785 | #else | ||
786 | bool scsi_use_blk_mq = false; | ||
787 | #endif | ||
788 | module_param_named(use_blk_mq, scsi_use_blk_mq, bool, S_IWUSR | S_IRUGO); | 785 | module_param_named(use_blk_mq, scsi_use_blk_mq, bool, S_IWUSR | S_IRUGO); |
789 | 786 | ||
790 | static int __init init_scsi(void) | 787 | static int __init init_scsi(void) |