diff options
author | Christoph Hellwig <hch@lst.de> | 2018-12-13 18:17:01 +0300 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2018-12-19 07:08:07 +0300 |
commit | 4dd4130a722fb046e941010cf5576aed252bb58a (patch) | |
tree | 181ef8984d48de80f985cc843e1f3d7f210397e0 /drivers/scsi/myrb.c | |
parent | 8b2db98e814a5ec45e8800fc22ca9000ae0a517b (diff) | |
download | linux-4dd4130a722fb046e941010cf5576aed252bb58a.tar.xz |
scsi: make sure all drivers set the use_clustering flag
A few drivers were not setting the use_clustering flag at all and thus
default to disable. Fix them up to explicitly set this field in
preparation for additional cleanups.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/myrb.c')
-rw-r--r-- | drivers/scsi/myrb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/myrb.c b/drivers/scsi/myrb.c index aeb282f617c5..f1abe38e3b3a 100644 --- a/drivers/scsi/myrb.c +++ b/drivers/scsi/myrb.c @@ -2236,6 +2236,7 @@ struct scsi_host_template myrb_template = { .shost_attrs = myrb_shost_attrs, .sdev_attrs = myrb_sdev_attrs, .this_id = -1, + .use_clustering = DISABLE_CLUSTERING, }; /** |