From: Dave Carroll Date: Fri, 16 Jun 2017 20:59:27 +0000 (-0600) Subject: aacraid: Update scsi_host_template to use tagged commands X-Git-Tag: v4.1.12-106.0.20170710_2300~56 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=5a20c16e712794914cab7d833d4cbc02cc4bef5c;p=users%2Fjedix%2Flinux-maple.git 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 --- 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)