Commit 138ce910 authored by Fabian Frederick's avatar Fabian Frederick Committed by David S. Miller

net: sctp: remove unnecessary break after return/goto

Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 84dbee18
...@@ -1025,7 +1025,6 @@ static int sctp_outq_flush(struct sctp_outq *q, int rtx_timeout) ...@@ -1025,7 +1025,6 @@ static int sctp_outq_flush(struct sctp_outq *q, int rtx_timeout)
sctp_outq_head_data(q, chunk); sctp_outq_head_data(q, chunk);
goto sctp_flush_out; goto sctp_flush_out;
break;
case SCTP_XMIT_OK: case SCTP_XMIT_OK:
/* The sender is in the SHUTDOWN-PENDING state, /* The sender is in the SHUTDOWN-PENDING state,
......
...@@ -4182,7 +4182,6 @@ sctp_disposition_t sctp_sf_unk_chunk(struct net *net, ...@@ -4182,7 +4182,6 @@ sctp_disposition_t sctp_sf_unk_chunk(struct net *net,
case SCTP_CID_ACTION_DISCARD: case SCTP_CID_ACTION_DISCARD:
/* Discard the packet. */ /* Discard the packet. */
return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands);
break;
case SCTP_CID_ACTION_DISCARD_ERR: case SCTP_CID_ACTION_DISCARD_ERR:
/* Generate an ERROR chunk as response. */ /* Generate an ERROR chunk as response. */
hdr = unk_chunk->chunk_hdr; hdr = unk_chunk->chunk_hdr;
...@@ -4198,11 +4197,9 @@ sctp_disposition_t sctp_sf_unk_chunk(struct net *net, ...@@ -4198,11 +4197,9 @@ sctp_disposition_t sctp_sf_unk_chunk(struct net *net,
/* Discard the packet. */ /* Discard the packet. */
sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); sctp_sf_pdiscard(net, ep, asoc, type, arg, commands);
return SCTP_DISPOSITION_CONSUME; return SCTP_DISPOSITION_CONSUME;
break;
case SCTP_CID_ACTION_SKIP: case SCTP_CID_ACTION_SKIP:
/* Skip the chunk. */ /* Skip the chunk. */
return SCTP_DISPOSITION_DISCARD; return SCTP_DISPOSITION_DISCARD;
break;
case SCTP_CID_ACTION_SKIP_ERR: case SCTP_CID_ACTION_SKIP_ERR:
/* Generate an ERROR chunk as response. */ /* Generate an ERROR chunk as response. */
hdr = unk_chunk->chunk_hdr; hdr = unk_chunk->chunk_hdr;
...@@ -4216,7 +4213,6 @@ sctp_disposition_t sctp_sf_unk_chunk(struct net *net, ...@@ -4216,7 +4213,6 @@ sctp_disposition_t sctp_sf_unk_chunk(struct net *net,
} }
/* Skip the chunk. */ /* Skip the chunk. */
return SCTP_DISPOSITION_CONSUME; return SCTP_DISPOSITION_CONSUME;
break;
default: default:
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment