Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8b7318d3 authored by wangweidong's avatar wangweidong Committed by David S. Miller
Browse files

sctp: remove the else path



Make the code more simplification.

Acked-by: default avatarNeil Horman <nhorman@tuxdriver.com>
Suggested-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarWang Weidong <wangweidong1@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d1d66186
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
@@ -955,17 +955,13 @@ int sctp_cmp_addr_exact(const union sctp_addr *ss1,
 */
struct sctp_chunk *sctp_get_ecne_prepend(struct sctp_association *asoc)
{
	struct sctp_chunk *chunk;
	if (!asoc->need_ecne)
		return NULL;

	/* Send ECNE if needed.
	 * Not being able to allocate a chunk here is not deadly.
	 */
	if (asoc->need_ecne)
		chunk = sctp_make_ecne(asoc, asoc->last_ecne_tsn);
	else
		chunk = NULL;

	return chunk;
	return sctp_make_ecne(asoc, asoc->last_ecne_tsn);
}

/*