xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/41] scsi: Mark expected switch fall-throughs
@ 2018-11-28  4:18 Gustavo A. R. Silva
  2018-11-28  4:34 ` [PATCH 41/41] scsi: xen-scsifront: mark expected switch fall-through Gustavo A. R. Silva
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Gustavo A. R. Silva @ 2018-11-28  4:18 UTC (permalink / raw)
  To: Khalid Aziz, Finn Thain, Michael Schmitz,
	Adaptec OEM Raid Solutions, Hannes Reinecke, Subbu Seetharaman,
	Ketan Mukadam, Jitendra Bhivare, Anil Gurumurthy,
	Sudarsana Kalluru, Bradley Grove, Don Brace,
	Intel SCU Linux support, Artur Paszkiewicz, Johannes Thumshirn,
	James Smart, Dick Kennedy, Kashyap Desai, Sumit Saxena,
	Shivasharan S
  Cc: Kees Cook, linux-scsi, Gustavo A. R. Silva, James E.J. Bottomley,
	linux-kernel, Martin K. Petersen

In preparation to enabling -Wimplicit-fallthrough, this patchset aims
to mark switch cases where we are expecting to fall through.

I reviewed case by case and concluded that each of them is an
intentional fall-through. However, it doesn't hurt that the
maintainers and supporters of each driver take a look. :)

Each commit log contains the particular details for the changes in the
corresponding file.

This series fix a total of 110 of the following type of warnings in
drivers/scsi:

drivers/scsi/aic7xxx/aic7xxx_core.c:4921:3: warning: this statement may fall through [-Wimplicit-fallthrough=]
   ahc_dma_tag_destroy(ahc, scb_data->sg_dmat);
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
drivers/scsi/aic7xxx/aic7xxx_core.c:4923:2: note: here
  case 6:
  ^~~~

Thanks!

Gustavo A. R. Silva (41):
  scsi: BusLogic: mark expected switch fall-through
  scsi: NCR5380: Mark expected switch fall-through
  scsi: aacraid: aachba: Mark expected switch fall-throughs
  scsi: aacraid: linit: Mark expected switch fall-through
  scsi: aic7xxx: aic79xx: mark expected switch fall-through
  scsi: aic7xxx: mark expected switch fall-throughs
  scsi: be2iscsi: be_iscsi: Mark expected switch fall-through
  scsi: be2iscsi: be_main: Mark expected switch fall-through
  scsi: bfa: bfa_fcpim: Mark expected switch fall-throughs
  scsi: bfa: bfa_fcs_lport: Mark expected switch fall-throughs
  scsi: bfa: bfa_fcs_rport: Mark expected switch fall-throughs
  scsi: bfa: bfa_ioc: Mark expected switch fall-throughs
  scsi: csiostor: csio_wr: mark expected switch fall-through
  scsi: esas2r: esas2r_init: mark expected switch fall-throughs
  scsi: hpsa: mark expected switch fall-throughs
  scsi: imm: mark expected switch fall-throughs
  scsi: isci: phy: Mark expected switch fall-through
  scsi: isci: remote_device: Mark expected switch fall-throughs
  scsi: isci: remote_node_context: mark expected switch fall-throughs
  scsi: isci: request: mark expected switch fall-through
  scsi: libfc: fc_rport: Mark expected switch fall-through
  scsi: lpfc: lpfc_ct: Mark expected switch fall-throughs
  scsi: lpfc: lpfc_els: Mark expected switch fall-throughs
  scsi: lpfc: lpfc_hbadisc: Mark expected switch fall-throughs
  scsi: lpfc: lpfc_nportdisc: Mark expected switch fall-through
  scsi: lpfc: lpfc_nvme: Mark expected switch fall-through
  scsi: lpfc: lpfc_scsi: Mark expected switch fall-throughs
  scsi: lpfc: lpfc_sli: Mark expected switch fall-throughs
  scsi: megaraid: megaraid_sas_base: Mark expected switch fall-through
  scsi: megaraid_sas_fusion: Mark expected switch fall-through
  scsi: mpt3sas: mpt3sas_scsih: Mark expected switch fall-through
  scsi: myrb: Mark expected switch fall-throughs
  scsi: osd: osd_initiator: mark expected switch fall-throughs
  scsi: osst: mark expected switch fall-throughs
  scsi: ppa: mark expected switch fall-through
  scsi: qla4xxx: ql4_os: mark expected switch fall-through
  scsi: st: mark expected switch fall-throughs
  scsi: sym53c8xx_2: sym_hipd: mark expected switch fall-throughs
  scsi: sym53c8xx_2: sym_nvram: Mark expected switch fall-through
  scsi: ufs: ufshcd: mark expected switch fall-throughs
  scsi: xen-scsifront: mark expected switch fall-through

 drivers/scsi/BusLogic.c                     |  1 +
 drivers/scsi/NCR5380.c                      |  3 +-
 drivers/scsi/aacraid/aachba.c               |  5 +++-
 drivers/scsi/aacraid/linit.c                |  1 +
 drivers/scsi/aic7xxx/aic79xx_core.c         | 14 +++++----
 drivers/scsi/aic7xxx/aic7xxx_core.c         | 12 ++++++--
 drivers/scsi/be2iscsi/be_iscsi.c            |  1 +
 drivers/scsi/be2iscsi/be_main.c             |  1 +
 drivers/scsi/bfa/bfa_fcpim.c                |  6 ++--
 drivers/scsi/bfa/bfa_fcs_lport.c            |  8 ++---
 drivers/scsi/bfa/bfa_fcs_rport.c            | 19 +++++-------
 drivers/scsi/bfa/bfa_ioc.c                  |  9 ++----
 drivers/scsi/csiostor/csio_wr.c             |  1 +
 drivers/scsi/esas2r/esas2r_init.c           |  3 +-
 drivers/scsi/hpsa.c                         |  5 ++++
 drivers/scsi/imm.c                          | 33 +++++++++++----------
 drivers/scsi/isci/phy.c                     |  1 +
 drivers/scsi/isci/remote_device.c           |  4 +--
 drivers/scsi/isci/remote_node_context.c     |  4 +--
 drivers/scsi/isci/request.c                 |  2 +-
 drivers/scsi/libfc/fc_rport.c               |  1 +
 drivers/scsi/lpfc/lpfc_ct.c                 |  2 ++
 drivers/scsi/lpfc/lpfc_els.c                |  1 +
 drivers/scsi/lpfc/lpfc_hbadisc.c            |  4 ++-
 drivers/scsi/lpfc/lpfc_nportdisc.c          |  1 +
 drivers/scsi/lpfc/lpfc_nvme.c               |  1 +
 drivers/scsi/lpfc/lpfc_scsi.c               |  8 ++---
 drivers/scsi/lpfc/lpfc_sli.c                | 20 +++++++------
 drivers/scsi/megaraid/megaraid_sas_base.c   |  1 +
 drivers/scsi/megaraid/megaraid_sas_fusion.c |  2 +-
 drivers/scsi/mpt3sas/mpt3sas_scsih.c        |  1 +
 drivers/scsi/myrb.c                         |  3 ++
 drivers/scsi/osd/osd_initiator.c            |  3 +-
 drivers/scsi/osst.c                         |  6 ++++
 drivers/scsi/ppa.c                          |  1 +
 drivers/scsi/qla4xxx/ql4_os.c               |  2 +-
 drivers/scsi/st.c                           |  4 +++
 drivers/scsi/sym53c8xx_2/sym_hipd.c         |  2 ++
 drivers/scsi/sym53c8xx_2/sym_nvram.c        |  1 +
 drivers/scsi/ufs/ufshcd.c                   |  3 ++
 drivers/scsi/xen-scsifront.c                |  2 +-
 41 files changed, 124 insertions(+), 78 deletions(-)

-- 
2.17.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* [PATCH 41/41] scsi: xen-scsifront: mark expected switch fall-through
  2018-11-28  4:18 [PATCH 00/41] scsi: Mark expected switch fall-throughs Gustavo A. R. Silva
@ 2018-11-28  4:34 ` Gustavo A. R. Silva
       [not found] ` <00c2a9d45e39fb294f4995b07a9b7547206c3085.1543374820.git.gustavo@embeddedor.com>
  2018-12-18 15:23 ` [PATCH 00/41] scsi: Mark expected switch fall-throughs Gustavo A. R. Silva
  2 siblings, 0 replies; 7+ messages in thread
From: Gustavo A. R. Silva @ 2018-11-28  4:34 UTC (permalink / raw)
  To: Boris Ostrovsky, Juergen Gross, Stefano Stabellini, xen-devel
  Cc: James E.J. Bottomley, Gustavo A. R. Silva, linux-scsi,
	Martin K. Petersen, linux-kernel

In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.

Notice that, in this particular case, I replaced
"Missed the backend's Closing state -- fallthrough" with
"fall through - Missed the backend's Closing state", which
contains the "fall through" annotation at the beginnig of
the code comment, which is what GCC is expecting to find.

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
---
 drivers/scsi/xen-scsifront.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/xen-scsifront.c b/drivers/scsi/xen-scsifront.c
index 61389bdc7926..bb76d0d2022b 100644
--- a/drivers/scsi/xen-scsifront.c
+++ b/drivers/scsi/xen-scsifront.c
@@ -1112,7 +1112,7 @@ static void scsifront_backend_changed(struct xenbus_device *dev,
 	case XenbusStateClosed:
 		if (dev->state == XenbusStateClosed)
 			break;
-		/* Missed the backend's Closing state -- fallthrough */
+		/* fall through - Missed the backend's Closing state */
 	case XenbusStateClosing:
 		scsifront_disconnect(info);
 		break;
-- 
2.17.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 41/41] scsi: xen-scsifront: mark expected switch fall-through
       [not found] ` <00c2a9d45e39fb294f4995b07a9b7547206c3085.1543374820.git.gustavo@embeddedor.com>
@ 2018-11-28  6:03   ` Juergen Gross
  2018-11-29  2:52   ` Martin K. Petersen
  1 sibling, 0 replies; 7+ messages in thread
From: Juergen Gross @ 2018-11-28  6:03 UTC (permalink / raw)
  To: Gustavo A. R. Silva, Boris Ostrovsky, Stefano Stabellini, xen-devel
  Cc: James E.J. Bottomley, linux-scsi, Martin K. Petersen, linux-kernel

On 28/11/2018 05:34, Gustavo A. R. Silva wrote:
> In preparation to enabling -Wimplicit-fallthrough, mark switch cases
> where we are expecting to fall through.
> 
> Notice that, in this particular case, I replaced
> "Missed the backend's Closing state -- fallthrough" with
> "fall through - Missed the backend's Closing state", which
> contains the "fall through" annotation at the beginnig of
> the code comment, which is what GCC is expecting to find.
> 
> Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>

Reviewed-by: Juergen Gross <jgross@suse.com>


Juergen

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 41/41] scsi: xen-scsifront: mark expected switch fall-through
       [not found] ` <00c2a9d45e39fb294f4995b07a9b7547206c3085.1543374820.git.gustavo@embeddedor.com>
  2018-11-28  6:03   ` Juergen Gross
@ 2018-11-29  2:52   ` Martin K. Petersen
  1 sibling, 0 replies; 7+ messages in thread
From: Martin K. Petersen @ 2018-11-29  2:52 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: Juergen Gross, Stefano Stabellini, linux-scsi,
	Martin K. Petersen, James E.J. Bottomley, linux-kernel,
	xen-devel, Boris Ostrovsky


Gustavo A.,

> In preparation to enabling -Wimplicit-fallthrough, mark switch cases
> where we are expecting to fall through.
>
> Notice that, in this particular case, I replaced
> "Missed the backend's Closing state -- fallthrough" with
> "fall through - Missed the backend's Closing state", which
> contains the "fall through" annotation at the beginnig of
> the code comment, which is what GCC is expecting to find.

Applied to 4.21/scsi-queue, thanks!

-- 
Martin K. Petersen	Oracle Linux Engineering

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 00/41] scsi: Mark expected switch fall-throughs
  2018-11-28  4:18 [PATCH 00/41] scsi: Mark expected switch fall-throughs Gustavo A. R. Silva
  2018-11-28  4:34 ` [PATCH 41/41] scsi: xen-scsifront: mark expected switch fall-through Gustavo A. R. Silva
       [not found] ` <00c2a9d45e39fb294f4995b07a9b7547206c3085.1543374820.git.gustavo@embeddedor.com>
@ 2018-12-18 15:23 ` Gustavo A. R. Silva
  2018-12-19  3:45   ` Martin K. Petersen
  2 siblings, 1 reply; 7+ messages in thread
From: Gustavo A. R. Silva @ 2018-12-18 15:23 UTC (permalink / raw)
  To: Khalid Aziz, Finn Thain, Michael Schmitz,
	Adaptec OEM Raid Solutions, Hannes Reinecke, Subbu Seetharaman,
	Ketan Mukadam, Jitendra Bhivare, Anil Gurumurthy,
	Sudarsana Kalluru, Bradley Grove, Don Brace,
	Intel SCU Linux support, Artur Paszkiewicz, Johannes Thumshirn,
	James Smart, Dick Kennedy, Kashyap Desai, Sumit Saxena,
	Shivasharan S
  Cc: James E.J. Bottomley, linux-kernel, linux-scsi, Kees Cook

Hi Martin,

Friendly ping:

Only 8 out the 41 patches in this series have been applied so far.

I wonder if you could apply the rest of this series, except:

  [PATCH 02/41] scsi: NCR5380: Mark expected switch fall-through

(I'll send a v2 of this patch)

Thanks
--
Gustavo

On 11/27/18 10:18 PM, Gustavo A. R. Silva wrote:
> In preparation to enabling -Wimplicit-fallthrough, this patchset aims
> to mark switch cases where we are expecting to fall through.
> 
> I reviewed case by case and concluded that each of them is an
> intentional fall-through. However, it doesn't hurt that the
> maintainers and supporters of each driver take a look. :)
> 
> Each commit log contains the particular details for the changes in the
> corresponding file.
> 
> This series fix a total of 110 of the following type of warnings in
> drivers/scsi:
> 
> drivers/scsi/aic7xxx/aic7xxx_core.c:4921:3: warning: this statement may fall through [-Wimplicit-fallthrough=]
>     ahc_dma_tag_destroy(ahc, scb_data->sg_dmat);
>     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> drivers/scsi/aic7xxx/aic7xxx_core.c:4923:2: note: here
>    case 6:
>    ^~~~
> 
> Thanks!
> 
> Gustavo A. R. Silva (41):
>    scsi: BusLogic: mark expected switch fall-through
>    scsi: NCR5380: Mark expected switch fall-through
>    scsi: aacraid: aachba: Mark expected switch fall-throughs
>    scsi: aacraid: linit: Mark expected switch fall-through
>    scsi: aic7xxx: aic79xx: mark expected switch fall-through
>    scsi: aic7xxx: mark expected switch fall-throughs
>    scsi: be2iscsi: be_iscsi: Mark expected switch fall-through
>    scsi: be2iscsi: be_main: Mark expected switch fall-through
>    scsi: bfa: bfa_fcpim: Mark expected switch fall-throughs
>    scsi: bfa: bfa_fcs_lport: Mark expected switch fall-throughs
>    scsi: bfa: bfa_fcs_rport: Mark expected switch fall-throughs
>    scsi: bfa: bfa_ioc: Mark expected switch fall-throughs
>    scsi: csiostor: csio_wr: mark expected switch fall-through
>    scsi: esas2r: esas2r_init: mark expected switch fall-throughs
>    scsi: hpsa: mark expected switch fall-throughs
>    scsi: imm: mark expected switch fall-throughs
>    scsi: isci: phy: Mark expected switch fall-through
>    scsi: isci: remote_device: Mark expected switch fall-throughs
>    scsi: isci: remote_node_context: mark expected switch fall-throughs
>    scsi: isci: request: mark expected switch fall-through
>    scsi: libfc: fc_rport: Mark expected switch fall-through
>    scsi: lpfc: lpfc_ct: Mark expected switch fall-throughs
>    scsi: lpfc: lpfc_els: Mark expected switch fall-throughs
>    scsi: lpfc: lpfc_hbadisc: Mark expected switch fall-throughs
>    scsi: lpfc: lpfc_nportdisc: Mark expected switch fall-through
>    scsi: lpfc: lpfc_nvme: Mark expected switch fall-through
>    scsi: lpfc: lpfc_scsi: Mark expected switch fall-throughs
>    scsi: lpfc: lpfc_sli: Mark expected switch fall-throughs
>    scsi: megaraid: megaraid_sas_base: Mark expected switch fall-through
>    scsi: megaraid_sas_fusion: Mark expected switch fall-through
>    scsi: mpt3sas: mpt3sas_scsih: Mark expected switch fall-through
>    scsi: myrb: Mark expected switch fall-throughs
>    scsi: osd: osd_initiator: mark expected switch fall-throughs
>    scsi: osst: mark expected switch fall-throughs
>    scsi: ppa: mark expected switch fall-through
>    scsi: qla4xxx: ql4_os: mark expected switch fall-through
>    scsi: st: mark expected switch fall-throughs
>    scsi: sym53c8xx_2: sym_hipd: mark expected switch fall-throughs
>    scsi: sym53c8xx_2: sym_nvram: Mark expected switch fall-through
>    scsi: ufs: ufshcd: mark expected switch fall-throughs
>    scsi: xen-scsifront: mark expected switch fall-through
> 
>   drivers/scsi/BusLogic.c                     |  1 +
>   drivers/scsi/NCR5380.c                      |  3 +-
>   drivers/scsi/aacraid/aachba.c               |  5 +++-
>   drivers/scsi/aacraid/linit.c                |  1 +
>   drivers/scsi/aic7xxx/aic79xx_core.c         | 14 +++++----
>   drivers/scsi/aic7xxx/aic7xxx_core.c         | 12 ++++++--
>   drivers/scsi/be2iscsi/be_iscsi.c            |  1 +
>   drivers/scsi/be2iscsi/be_main.c             |  1 +
>   drivers/scsi/bfa/bfa_fcpim.c                |  6 ++--
>   drivers/scsi/bfa/bfa_fcs_lport.c            |  8 ++---
>   drivers/scsi/bfa/bfa_fcs_rport.c            | 19 +++++-------
>   drivers/scsi/bfa/bfa_ioc.c                  |  9 ++----
>   drivers/scsi/csiostor/csio_wr.c             |  1 +
>   drivers/scsi/esas2r/esas2r_init.c           |  3 +-
>   drivers/scsi/hpsa.c                         |  5 ++++
>   drivers/scsi/imm.c                          | 33 +++++++++++----------
>   drivers/scsi/isci/phy.c                     |  1 +
>   drivers/scsi/isci/remote_device.c           |  4 +--
>   drivers/scsi/isci/remote_node_context.c     |  4 +--
>   drivers/scsi/isci/request.c                 |  2 +-
>   drivers/scsi/libfc/fc_rport.c               |  1 +
>   drivers/scsi/lpfc/lpfc_ct.c                 |  2 ++
>   drivers/scsi/lpfc/lpfc_els.c                |  1 +
>   drivers/scsi/lpfc/lpfc_hbadisc.c            |  4 ++-
>   drivers/scsi/lpfc/lpfc_nportdisc.c          |  1 +
>   drivers/scsi/lpfc/lpfc_nvme.c               |  1 +
>   drivers/scsi/lpfc/lpfc_scsi.c               |  8 ++---
>   drivers/scsi/lpfc/lpfc_sli.c                | 20 +++++++------
>   drivers/scsi/megaraid/megaraid_sas_base.c   |  1 +
>   drivers/scsi/megaraid/megaraid_sas_fusion.c |  2 +-
>   drivers/scsi/mpt3sas/mpt3sas_scsih.c        |  1 +
>   drivers/scsi/myrb.c                         |  3 ++
>   drivers/scsi/osd/osd_initiator.c            |  3 +-
>   drivers/scsi/osst.c                         |  6 ++++
>   drivers/scsi/ppa.c                          |  1 +
>   drivers/scsi/qla4xxx/ql4_os.c               |  2 +-
>   drivers/scsi/st.c                           |  4 +++
>   drivers/scsi/sym53c8xx_2/sym_hipd.c         |  2 ++
>   drivers/scsi/sym53c8xx_2/sym_nvram.c        |  1 +
>   drivers/scsi/ufs/ufshcd.c                   |  3 ++
>   drivers/scsi/xen-scsifront.c                |  2 +-
>   41 files changed, 124 insertions(+), 78 deletions(-)
> 

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 00/41] scsi: Mark expected switch fall-throughs
  2018-12-18 15:23 ` [PATCH 00/41] scsi: Mark expected switch fall-throughs Gustavo A. R. Silva
@ 2018-12-19  3:45   ` Martin K. Petersen
  2018-12-19  3:53     ` Gustavo A. R. Silva
  0 siblings, 1 reply; 7+ messages in thread
From: Martin K. Petersen @ 2018-12-19  3:45 UTC (permalink / raw)
  To: Gustavo A. R. Silva
  Cc: Don Brace, Kai Mäkisara, Artur Paszkiewicz, Matthew Wilcox,
	Vinayak Holikatti, Ketan Mukadam, Kees Cook, Hannes Reinecke,
	Stefano Stabellini, Bradley Grove, Sudarsana Kalluru,
	Subbu Seetharaman, Sathya Prakash, esc.storagedev, James Smart,
	Finn Thain, Kashyap Desai, xen-devel, osst-users,
	MPT-FusionLinux.pdl, Boaz Harrosh


Hi Gustavo,

> Only 8 out the 41 patches in this series have been applied so far.

I applied the patches that got acked or reviewed by their respective
driver maintainers.

If you haven't received feedback on a patch you should poke the relevant
driver maintainer.

-- 
Martin K. Petersen	Oracle Linux Engineering

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [PATCH 00/41] scsi: Mark expected switch fall-throughs
  2018-12-19  3:45   ` Martin K. Petersen
@ 2018-12-19  3:53     ` Gustavo A. R. Silva
  0 siblings, 0 replies; 7+ messages in thread
From: Gustavo A. R. Silva @ 2018-12-19  3:53 UTC (permalink / raw)
  To: Martin K. Petersen
  Cc: Don Brace, Kai Mäkisara, Artur Paszkiewicz, Matthew Wilcox,
	Vinayak Holikatti, Ketan Mukadam, Kees Cook, Hannes Reinecke,
	Stefano Stabellini, Bradley Grove, Sudarsana Kalluru,
	Subbu Seetharaman, Sathya Prakash, esc.storagedev, James Smart,
	Finn Thain, Kashyap Desai, xen-devel, osst-users,
	MPT-FusionLinux.pdl, Boaz Harrosh



On 12/18/18 9:45 PM, Martin K. Petersen wrote:
> 
> If you haven't received feedback on a patch you should poke the relevant
> driver maintainer.
> 

Got it. Will do so.

Thanks
--
Gustavo

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

end of thread, other threads:[~2018-12-19  3:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-28  4:18 [PATCH 00/41] scsi: Mark expected switch fall-throughs Gustavo A. R. Silva
2018-11-28  4:34 ` [PATCH 41/41] scsi: xen-scsifront: mark expected switch fall-through Gustavo A. R. Silva
     [not found] ` <00c2a9d45e39fb294f4995b07a9b7547206c3085.1543374820.git.gustavo@embeddedor.com>
2018-11-28  6:03   ` Juergen Gross
2018-11-29  2:52   ` Martin K. Petersen
2018-12-18 15:23 ` [PATCH 00/41] scsi: Mark expected switch fall-throughs Gustavo A. R. Silva
2018-12-19  3:45   ` Martin K. Petersen
2018-12-19  3:53     ` Gustavo A. R. Silva

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).