Skip to content

Commit

Permalink
sctp: remove the else path
Browse files Browse the repository at this point in the history
Make the code more simplification.

Acked-by: Neil Horman <nhorman@tuxdriver.com>
Suggested-by: Joe Perches <joe@perches.com>
Signed-off-by: Wang Weidong <wangweidong1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
wangweidong authored and David S. Miller committed Dec 6, 2013
1 parent d1d6618 commit 8b7318d
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions net/sctp/associola.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/*
Expand Down

0 comments on commit 8b7318d

Please sign in to comment.