From: Bart Van Assche Date: Mon, 30 Jul 2018 21:40:19 +0000 (-0700) Subject: scsi: libiscsi: Annotate fall-through X-Git-Tag: for-linus-20180825~78^2~53 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=807cf197fc9a3bc156523cb68786a9cb0ec396b4;p=linux-block.git scsi: libiscsi: Annotate fall-through This patch avoids that building with W=1 causes the compiler to complain about fall-through. Signed-off-by: Bart Van Assche Cc: Lee Duncan Cc: Chris Leech Signed-off-by: Martin K. Petersen --- diff --git a/drivers/scsi/libiscsi.c b/drivers/scsi/libiscsi.c index b36bafd5a058..d5f2f368040f 100644 --- a/drivers/scsi/libiscsi.c +++ b/drivers/scsi/libiscsi.c @@ -1705,6 +1705,7 @@ int iscsi_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *sc) sc->result = DID_NO_CONNECT << 16; break; } + /* fall through */ case ISCSI_STATE_IN_RECOVERY: reason = FAILURE_SESSION_IN_RECOVERY; sc->result = DID_IMM_RETRY << 16;