From d681f8e287134c7ef6d62a2bfb3c93f24cd5dfdc Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Tue, 5 May 2015 14:56:15 +0200 Subject: [PATCH] iscsi-scstd: Annotate fall-throughs for Coverity Signed-off-by: Bart Van Assche --- iscsi-scst/usr/iscsi_scstd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iscsi-scst/usr/iscsi_scstd.c b/iscsi-scst/usr/iscsi_scstd.c index 322b4c321..c2ff33df7 100644 --- a/iscsi-scst/usr/iscsi_scstd.c +++ b/iscsi-scst/usr/iscsi_scstd.c @@ -595,6 +595,7 @@ again: conn->rwsize = conn->rsp.ahssize; goto write_again; } + /* fall-through */ case IOSTATE_WRITE_AHS: if (conn->rsp.datasize) { int o; @@ -610,6 +611,7 @@ again: } goto write_again; } + /* fall-through */ case IOSTATE_WRITE_DATA: conn->uncork_transmit(pollfd->fd); cmnd_finish(conn);