public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mpi3mr: Fix duplicate device entries when scan through sysfs
@ 2021-10-13  8:16 Sreekanth Reddy
  2021-10-13  8:23 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Sreekanth Reddy @ 2021-10-13  8:16 UTC (permalink / raw)
  To: linux-scsi, martin.petersen
  Cc: thenzl, sathya.prakash, stable, Sreekanth Reddy

[-- Attachment #1: Type: text/plain, Size: 898 bytes --]

When the user scans the devices through 'scan' sysfs using below
command then the user will observe duplicate device entries
in lsscsi command output.
echo "- - -" > /sys/class/scsi_host/host0/scan

Fix is to set the shost's max_channel to zero.

Cc: stable@vger.kernel.org #v5.14.11+
Signed-off-by: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
---
 drivers/scsi/mpi3mr/mpi3mr_os.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/mpi3mr/mpi3mr_os.c b/drivers/scsi/mpi3mr/mpi3mr_os.c
index 2197988333fe..3cae8803383b 100644
--- a/drivers/scsi/mpi3mr/mpi3mr_os.c
+++ b/drivers/scsi/mpi3mr/mpi3mr_os.c
@@ -3736,7 +3736,7 @@ mpi3mr_probe(struct pci_dev *pdev, const struct pci_device_id *id)
 	shost->max_lun = -1;
 	shost->unique_id = mrioc->id;
 
-	shost->max_channel = 1;
+	shost->max_channel = 0;
 	shost->max_id = 0xFFFFFFFF;
 
 	if (prot_mask >= 0)
-- 
2.27.0


[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4218 bytes --]

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-10-13 16:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-13  8:16 [PATCH] mpi3mr: Fix duplicate device entries when scan through sysfs Sreekanth Reddy
2021-10-13  8:23 ` Greg KH
2021-10-13 16:05   ` Sreekanth Reddy
2021-10-13 16:40     ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox