linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 11/29] scsi: 3w-sas: constify pci_device_id.
@ 2017-07-30  8:40 Arvind Yadav
  2017-07-30  8:40 ` [PATCH 12/29] scsi: hptiop: " Arvind Yadav
                   ` (8 more replies)
  0 siblings, 9 replies; 11+ messages in thread
From: Arvind Yadav @ 2017-07-30  8:40 UTC (permalink / raw)
  To: martin.petersen, jejb, mdr, hare, aacraid, matthew, fthain,
	schmitzmic, kashyap.desai, sumit.saxena, gotom, mrochs,
	QLogic-Storage-Upstream, jinpu.wang
  Cc: linux-scsi, linux-kernel

pci_device_id are not supposed to change at runtime. All functions
working with pci_device_id provided by <linux/pci.h> work with
const pci_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/scsi/3w-sas.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/3w-sas.c b/drivers/scsi/3w-sas.c
index b150e13..e771e86 100644
--- a/drivers/scsi/3w-sas.c
+++ b/drivers/scsi/3w-sas.c
@@ -1847,7 +1847,7 @@ static int twl_resume(struct pci_dev *pdev)
 #endif
 
 /* PCI Devices supported by this driver */
-static struct pci_device_id twl_pci_tbl[] = {
+static const struct pci_device_id twl_pci_tbl[] = {
 	{ PCI_VDEVICE(3WARE, PCI_DEVICE_ID_3WARE_9750) },
 	{ }
 };
-- 
2.7.4

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

* [PATCH 12/29] scsi: hptiop: constify pci_device_id.
  2017-07-30  8:40 [PATCH 11/29] scsi: 3w-sas: constify pci_device_id Arvind Yadav
@ 2017-07-30  8:40 ` Arvind Yadav
  2017-07-30  8:40 ` [PATCH 13/29] scsi: fdomain: " Arvind Yadav
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Arvind Yadav @ 2017-07-30  8:40 UTC (permalink / raw)
  To: martin.petersen, jejb, mdr, hare, aacraid, matthew, fthain,
	schmitzmic, kashyap.desai, sumit.saxena, gotom, mrochs,
	QLogic-Storage-Upstream, jinpu.wang
  Cc: linux-scsi, linux-kernel

pci_device_id are not supposed to change at runtime. All functions
working with pci_device_id provided by <linux/pci.h> work with
const pci_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/scsi/hptiop.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/hptiop.c b/drivers/scsi/hptiop.c
index 7226226..31415b8 100644
--- a/drivers/scsi/hptiop.c
+++ b/drivers/scsi/hptiop.c
@@ -1647,7 +1647,7 @@ static struct hptiop_adapter_ops hptiop_mvfrey_ops = {
 	.host_phy_flag     = cpu_to_le64(1),
 };
 
-static struct pci_device_id hptiop_id_table[] = {
+static const struct pci_device_id hptiop_id_table[] = {
 	{ PCI_VDEVICE(TTI, 0x3220), (kernel_ulong_t)&hptiop_itl_ops },
 	{ PCI_VDEVICE(TTI, 0x3320), (kernel_ulong_t)&hptiop_itl_ops },
 	{ PCI_VDEVICE(TTI, 0x3410), (kernel_ulong_t)&hptiop_itl_ops },
-- 
2.7.4

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

* [PATCH 13/29] scsi: fdomain: constify pci_device_id.
  2017-07-30  8:40 [PATCH 11/29] scsi: 3w-sas: constify pci_device_id Arvind Yadav
  2017-07-30  8:40 ` [PATCH 12/29] scsi: hptiop: " Arvind Yadav
@ 2017-07-30  8:40 ` Arvind Yadav
  2017-07-30  8:40 ` [PATCH 14/29] scsi: snic: " Arvind Yadav
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Arvind Yadav @ 2017-07-30  8:40 UTC (permalink / raw)
  To: martin.petersen, jejb, mdr, hare, aacraid, matthew, fthain,
	schmitzmic, kashyap.desai, sumit.saxena, gotom, mrochs,
	QLogic-Storage-Upstream, jinpu.wang
  Cc: linux-scsi, linux-kernel

pci_device_id are not supposed to change at runtime. All functions
working with pci_device_id provided by <linux/pci.h> work with
const pci_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/scsi/fdomain.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/fdomain.c b/drivers/scsi/fdomain.c
index b87ab38..d46cbe8 100644
--- a/drivers/scsi/fdomain.c
+++ b/drivers/scsi/fdomain.c
@@ -1770,7 +1770,7 @@ struct scsi_host_template fdomain_driver_template = {
 #ifndef PCMCIA
 #if defined(CONFIG_PCI) && defined(MODULE)
 
-static struct pci_device_id fdomain_pci_tbl[] = {
+static const struct pci_device_id fdomain_pci_tbl[] = {
 	{ PCI_VENDOR_ID_FD, PCI_DEVICE_ID_FD_36C70,
 	  PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
 	{ }
-- 
2.7.4

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

* [PATCH 14/29] scsi: snic: constify pci_device_id.
  2017-07-30  8:40 [PATCH 11/29] scsi: 3w-sas: constify pci_device_id Arvind Yadav
  2017-07-30  8:40 ` [PATCH 12/29] scsi: hptiop: " Arvind Yadav
  2017-07-30  8:40 ` [PATCH 13/29] scsi: fdomain: " Arvind Yadav
@ 2017-07-30  8:40 ` Arvind Yadav
  2017-07-30  8:40 ` [PATCH 15/29] scsi: sym53c8xx_2: " Arvind Yadav
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Arvind Yadav @ 2017-07-30  8:40 UTC (permalink / raw)
  To: martin.petersen, jejb, mdr, hare, aacraid, matthew, fthain,
	schmitzmic, kashyap.desai, sumit.saxena, gotom, mrochs,
	QLogic-Storage-Upstream, jinpu.wang
  Cc: linux-scsi, linux-kernel

pci_device_id are not supposed to change at runtime. All functions
working with pci_device_id provided by <linux/pci.h> work with
const pci_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/scsi/snic/snic_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/snic/snic_main.c b/drivers/scsi/snic/snic_main.c
index 7cf70aa..74031e4 100644
--- a/drivers/scsi/snic/snic_main.c
+++ b/drivers/scsi/snic/snic_main.c
@@ -35,7 +35,7 @@
 #define PCI_DEVICE_ID_CISCO_SNIC	0x0046
 
 /* Supported devices by snic module */
-static struct pci_device_id snic_id_table[] = {
+static const struct pci_device_id snic_id_table[] = {
 	{PCI_DEVICE(0x1137, PCI_DEVICE_ID_CISCO_SNIC) },
 	{ 0, }	/* end of table */
 };
-- 
2.7.4

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

* [PATCH 15/29] scsi: sym53c8xx_2: constify pci_device_id.
  2017-07-30  8:40 [PATCH 11/29] scsi: 3w-sas: constify pci_device_id Arvind Yadav
                   ` (2 preceding siblings ...)
  2017-07-30  8:40 ` [PATCH 14/29] scsi: snic: " Arvind Yadav
@ 2017-07-30  8:40 ` Arvind Yadav
  2017-07-30  8:40 ` [PATCH 16/29] scsi: esas2r: " Arvind Yadav
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Arvind Yadav @ 2017-07-30  8:40 UTC (permalink / raw)
  To: martin.petersen, jejb, mdr, hare, aacraid, matthew, fthain,
	schmitzmic, kashyap.desai, sumit.saxena, gotom, mrochs,
	QLogic-Storage-Upstream, jinpu.wang
  Cc: linux-scsi, linux-kernel

pci_device_id are not supposed to change at runtime. All functions
working with pci_device_id provided by <linux/pci.h> work with
const pci_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/scsi/sym53c8xx_2/sym_glue.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/sym53c8xx_2/sym_glue.c b/drivers/scsi/sym53c8xx_2/sym_glue.c
index d32e3ba..6934265 100644
--- a/drivers/scsi/sym53c8xx_2/sym_glue.c
+++ b/drivers/scsi/sym53c8xx_2/sym_glue.c
@@ -2000,7 +2000,7 @@ static struct spi_function_template sym2_transport_functions = {
 	.get_signalling	= sym2_get_signalling,
 };
 
-static struct pci_device_id sym2_id_table[] = {
+static const struct pci_device_id sym2_id_table[] = {
 	{ PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_NCR_53C810,
 	  PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
 	{ PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_NCR_53C820,
-- 
2.7.4

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

* [PATCH 16/29] scsi: esas2r: constify pci_device_id.
  2017-07-30  8:40 [PATCH 11/29] scsi: 3w-sas: constify pci_device_id Arvind Yadav
                   ` (3 preceding siblings ...)
  2017-07-30  8:40 ` [PATCH 15/29] scsi: sym53c8xx_2: " Arvind Yadav
@ 2017-07-30  8:40 ` Arvind Yadav
  2017-08-10 18:59   ` Bradley Grove
  2017-07-30  8:40 ` [PATCH 17/29] scsi: qla2xxx: " Arvind Yadav
                   ` (3 subsequent siblings)
  8 siblings, 1 reply; 11+ messages in thread
From: Arvind Yadav @ 2017-07-30  8:40 UTC (permalink / raw)
  To: martin.petersen, jejb, mdr, hare, aacraid, matthew, fthain,
	schmitzmic, kashyap.desai, sumit.saxena, gotom, mrochs,
	QLogic-Storage-Upstream, jinpu.wang
  Cc: linux-scsi, linux-kernel

pci_device_id are not supposed to change at runtime. All functions
working with pci_device_id provided by <linux/pci.h> work with
const pci_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/scsi/esas2r/esas2r_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/esas2r/esas2r_main.c b/drivers/scsi/esas2r/esas2r_main.c
index f2e9d8a..81f226b 100644
--- a/drivers/scsi/esas2r/esas2r_main.c
+++ b/drivers/scsi/esas2r/esas2r_main.c
@@ -309,7 +309,7 @@ MODULE_PARM_DESC(interrupt_mode,
 		 "Defines the interrupt mode to use.  0 for legacy"
 		 ", 1 for MSI.  Default is MSI (1).");
 
-static struct pci_device_id
+static const struct pci_device_id
 	esas2r_pci_table[] = {
 	{ ATTO_VENDOR_ID, 0x0049,	  ATTO_VENDOR_ID, 0x0049,
 	  0,
-- 
2.7.4

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

* [PATCH 17/29] scsi: qla2xxx: constify pci_device_id.
  2017-07-30  8:40 [PATCH 11/29] scsi: 3w-sas: constify pci_device_id Arvind Yadav
                   ` (4 preceding siblings ...)
  2017-07-30  8:40 ` [PATCH 16/29] scsi: esas2r: " Arvind Yadav
@ 2017-07-30  8:40 ` Arvind Yadav
  2017-07-30  8:40 ` [PATCH 18/29] scsi: dmx3191d: " Arvind Yadav
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Arvind Yadav @ 2017-07-30  8:40 UTC (permalink / raw)
  To: martin.petersen, jejb, mdr, hare, aacraid, matthew, fthain,
	schmitzmic, kashyap.desai, sumit.saxena, gotom, mrochs,
	QLogic-Storage-Upstream, jinpu.wang
  Cc: linux-scsi, linux-kernel

pci_device_id are not supposed to change at runtime. All functions
working with pci_device_id provided by <linux/pci.h> work with
const pci_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/scsi/qla2xxx/qla_os.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c
index df57655..2ee8e86 100644
--- a/drivers/scsi/qla2xxx/qla_os.c
+++ b/drivers/scsi/qla2xxx/qla_os.c
@@ -6494,7 +6494,7 @@ static const struct pci_error_handlers qla2xxx_err_handler = {
 	.resume = qla2xxx_pci_resume,
 };
 
-static struct pci_device_id qla2xxx_pci_tbl[] = {
+static const struct pci_device_id qla2xxx_pci_tbl[] = {
 	{ PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
 	{ PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
 	{ PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
-- 
2.7.4

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

* [PATCH 18/29] scsi: dmx3191d: constify pci_device_id.
  2017-07-30  8:40 [PATCH 11/29] scsi: 3w-sas: constify pci_device_id Arvind Yadav
                   ` (5 preceding siblings ...)
  2017-07-30  8:40 ` [PATCH 17/29] scsi: qla2xxx: " Arvind Yadav
@ 2017-07-30  8:40 ` Arvind Yadav
  2017-07-30  8:40 ` [PATCH 19/29] scsi: megaraid: " Arvind Yadav
  2017-07-30  8:40 ` [PATCH 20/29] scsi: cxlflash: " Arvind Yadav
  8 siblings, 0 replies; 11+ messages in thread
From: Arvind Yadav @ 2017-07-30  8:40 UTC (permalink / raw)
  To: martin.petersen, jejb, mdr, hare, aacraid, matthew, fthain,
	schmitzmic, kashyap.desai, sumit.saxena, gotom, mrochs,
	QLogic-Storage-Upstream, jinpu.wang
  Cc: linux-scsi, linux-kernel

pci_device_id are not supposed to change at runtime. All functions
working with pci_device_id provided by <linux/pci.h> work with
const pci_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/scsi/dmx3191d.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/dmx3191d.c b/drivers/scsi/dmx3191d.c
index 6af3394..805ae59 100644
--- a/drivers/scsi/dmx3191d.c
+++ b/drivers/scsi/dmx3191d.c
@@ -139,7 +139,7 @@ static void dmx3191d_remove_one(struct pci_dev *pdev)
 	pci_disable_device(pdev);
 }
 
-static struct pci_device_id dmx3191d_pci_tbl[] = {
+static const struct pci_device_id dmx3191d_pci_tbl[] = {
 	{PCI_VENDOR_ID_DOMEX, PCI_DEVICE_ID_DOMEX_DMX3191D,
 		PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4},
 	{ }
-- 
2.7.4

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

* [PATCH 19/29] scsi: megaraid: constify pci_device_id.
  2017-07-30  8:40 [PATCH 11/29] scsi: 3w-sas: constify pci_device_id Arvind Yadav
                   ` (6 preceding siblings ...)
  2017-07-30  8:40 ` [PATCH 18/29] scsi: dmx3191d: " Arvind Yadav
@ 2017-07-30  8:40 ` Arvind Yadav
  2017-07-30  8:40 ` [PATCH 20/29] scsi: cxlflash: " Arvind Yadav
  8 siblings, 0 replies; 11+ messages in thread
From: Arvind Yadav @ 2017-07-30  8:40 UTC (permalink / raw)
  To: martin.petersen, jejb, mdr, hare, aacraid, matthew, fthain,
	schmitzmic, kashyap.desai, sumit.saxena, gotom, mrochs,
	QLogic-Storage-Upstream, jinpu.wang
  Cc: linux-scsi, linux-kernel

pci_device_id are not supposed to change at runtime. All functions
working with pci_device_id provided by <linux/pci.h> work with
const pci_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/scsi/megaraid.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/megaraid.c b/drivers/scsi/megaraid.c
index 3c63c29..17012c8 100644
--- a/drivers/scsi/megaraid.c
+++ b/drivers/scsi/megaraid.c
@@ -4652,7 +4652,7 @@ megaraid_shutdown(struct pci_dev *pdev)
 	__megaraid_shutdown(adapter);
 }
 
-static struct pci_device_id megaraid_pci_tbl[] = {
+static const struct pci_device_id megaraid_pci_tbl[] = {
 	{PCI_VENDOR_ID_AMI, PCI_DEVICE_ID_AMI_MEGARAID,
 		PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
 	{PCI_VENDOR_ID_AMI, PCI_DEVICE_ID_AMI_MEGARAID2,
-- 
2.7.4

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

* [PATCH 20/29] scsi: cxlflash: constify pci_device_id.
  2017-07-30  8:40 [PATCH 11/29] scsi: 3w-sas: constify pci_device_id Arvind Yadav
                   ` (7 preceding siblings ...)
  2017-07-30  8:40 ` [PATCH 19/29] scsi: megaraid: " Arvind Yadav
@ 2017-07-30  8:40 ` Arvind Yadav
  8 siblings, 0 replies; 11+ messages in thread
From: Arvind Yadav @ 2017-07-30  8:40 UTC (permalink / raw)
  To: martin.petersen, jejb, mdr, hare, aacraid, matthew, fthain,
	schmitzmic, kashyap.desai, sumit.saxena, gotom, mrochs,
	QLogic-Storage-Upstream, jinpu.wang
  Cc: linux-scsi, linux-kernel

pci_device_id are not supposed to change at runtime. All functions
working with pci_device_id provided by <linux/pci.h> work with
const pci_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/scsi/cxlflash/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/cxlflash/main.c b/drivers/scsi/cxlflash/main.c
index 077f62e..88bd551 100644
--- a/drivers/scsi/cxlflash/main.c
+++ b/drivers/scsi/cxlflash/main.c
@@ -3155,7 +3155,7 @@ static struct dev_dependent_vals dev_briard_vals = { CXLFLASH_MAX_SECTORS,
 /*
  * PCI device binding table
  */
-static struct pci_device_id cxlflash_pci_table[] = {
+static const struct pci_device_id cxlflash_pci_table[] = {
 	{PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CORSA,
 	 PCI_ANY_ID, PCI_ANY_ID, 0, 0, (kernel_ulong_t)&dev_corsa_vals},
 	{PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_FLASH_GT,
-- 
2.7.4

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

* Re: [PATCH 16/29] scsi: esas2r: constify pci_device_id.
  2017-07-30  8:40 ` [PATCH 16/29] scsi: esas2r: " Arvind Yadav
@ 2017-08-10 18:59   ` Bradley Grove
  0 siblings, 0 replies; 11+ messages in thread
From: Bradley Grove @ 2017-08-10 18:59 UTC (permalink / raw)
  To: Arvind Yadav, martin.petersen, jejb, mdr, hare, aacraid, matthew,
	fthain, schmitzmic, kashyap.desai, sumit.saxena, gotom, mrochs,
	QLogic-Storage-Upstream, jinpu.wang
  Cc: linux-scsi, linux-kernel



Looks good.

Acked-by: Bradley Grove <bgrove@attotech.com>


On 07/30/2017 04:40 AM, Arvind Yadav wrote:
> pci_device_id are not supposed to change at runtime. All functions
> working with pci_device_id provided by <linux/pci.h> work with
> const pci_device_id. So mark the non-const structs as const.
> 
> Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
> ---
>   drivers/scsi/esas2r/esas2r_main.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/scsi/esas2r/esas2r_main.c b/drivers/scsi/esas2r/esas2r_main.c
> index f2e9d8a..81f226b 100644
> --- a/drivers/scsi/esas2r/esas2r_main.c
> +++ b/drivers/scsi/esas2r/esas2r_main.c
> @@ -309,7 +309,7 @@ MODULE_PARM_DESC(interrupt_mode,
>   		 "Defines the interrupt mode to use.  0 for legacy"
>   		 ", 1 for MSI.  Default is MSI (1).");
>   
> -static struct pci_device_id
> +static const struct pci_device_id
>   	esas2r_pci_table[] = {
>   	{ ATTO_VENDOR_ID, 0x0049,	  ATTO_VENDOR_ID, 0x0049,
>   	  0,
> 




This electronic transmission and any attachments hereto are intended only for the use of the individual or entity to which it is addressed and may contain confidential information belonging to ATTO Technology, Inc. If you have reason to believe that you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or the taking of any action in reliance on the contents of this electronic transmission is strictly prohibited. If you have reason to believe that you have received this transmission in error, please notify ATTO immediately by return e-mail and delete and destroy this communication.   

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

end of thread, other threads:[~2017-08-10 19:14 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-30  8:40 [PATCH 11/29] scsi: 3w-sas: constify pci_device_id Arvind Yadav
2017-07-30  8:40 ` [PATCH 12/29] scsi: hptiop: " Arvind Yadav
2017-07-30  8:40 ` [PATCH 13/29] scsi: fdomain: " Arvind Yadav
2017-07-30  8:40 ` [PATCH 14/29] scsi: snic: " Arvind Yadav
2017-07-30  8:40 ` [PATCH 15/29] scsi: sym53c8xx_2: " Arvind Yadav
2017-07-30  8:40 ` [PATCH 16/29] scsi: esas2r: " Arvind Yadav
2017-08-10 18:59   ` Bradley Grove
2017-07-30  8:40 ` [PATCH 17/29] scsi: qla2xxx: " Arvind Yadav
2017-07-30  8:40 ` [PATCH 18/29] scsi: dmx3191d: " Arvind Yadav
2017-07-30  8:40 ` [PATCH 19/29] scsi: megaraid: " Arvind Yadav
2017-07-30  8:40 ` [PATCH 20/29] scsi: cxlflash: " Arvind Yadav

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).