From 5a20c16e712794914cab7d833d4cbc02cc4bef5c Mon Sep 17 00:00:00 2001 From: Dave Carroll Date: Fri, 16 Jun 2017 14:59:27 -0600 Subject: [PATCH] aacraid: Update scsi_host_template to use tagged commands Most of the non-multi-queue scsi drivers were updated to include .use_blk_tags in the scsi_host_template, however the aacraid driver was left out. This will cause the inbox driver to fail to allocate a tagged fib. Update the scsi_host_template to include .use_blk_tags Orabug: 26291289 Signed-off-by: Dave Carroll Signed-off-by: Kirtikar Kashyap Reviewed-by: Martin K. Petersen --- drivers/scsi/aacraid/linit.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/scsi/aacraid/linit.c b/drivers/scsi/aacraid/linit.c index 32b799b6498c..998428a8df3b 100644 --- a/drivers/scsi/aacraid/linit.c +++ b/drivers/scsi/aacraid/linit.c @@ -1064,6 +1064,7 @@ static struct scsi_host_template aac_driver_template = { .use_clustering = ENABLE_CLUSTERING, .emulated = 1, .no_write_same = 1, + .use_blk_tags = 1, }; static void __aac_shutdown(struct aac_dev * aac) -- 2.50.1