diff options
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/associola.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/net/sctp/associola.c b/net/sctp/associola.c index 85295208deb5..c7172f8ebac2 100644 --- a/net/sctp/associola.c +++ b/net/sctp/associola.c | |||
@@ -955,17 +955,13 @@ int sctp_cmp_addr_exact(const union sctp_addr *ss1, | |||
955 | */ | 955 | */ |
956 | struct sctp_chunk *sctp_get_ecne_prepend(struct sctp_association *asoc) | 956 | struct sctp_chunk *sctp_get_ecne_prepend(struct sctp_association *asoc) |
957 | { | 957 | { |
958 | struct sctp_chunk *chunk; | 958 | if (!asoc->need_ecne) |
959 | return NULL; | ||
959 | 960 | ||
960 | /* Send ECNE if needed. | 961 | /* Send ECNE if needed. |
961 | * Not being able to allocate a chunk here is not deadly. | 962 | * Not being able to allocate a chunk here is not deadly. |
962 | */ | 963 | */ |
963 | if (asoc->need_ecne) | 964 | return sctp_make_ecne(asoc, asoc->last_ecne_tsn); |
964 | chunk = sctp_make_ecne(asoc, asoc->last_ecne_tsn); | ||
965 | else | ||
966 | chunk = NULL; | ||
967 | |||
968 | return chunk; | ||
969 | } | 965 | } |
970 | 966 | ||
971 | /* | 967 | /* |