diff options
Diffstat (limited to 'net/sctp/chunk.c')
-rw-r--r-- | net/sctp/chunk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sctp/chunk.c b/net/sctp/chunk.c index 697721a7a3f1..81466f6442e8 100644 --- a/net/sctp/chunk.c +++ b/net/sctp/chunk.c | |||
@@ -307,7 +307,7 @@ int sctp_chunk_abandoned(struct sctp_chunk *chunk) | |||
307 | if (SCTP_PR_TTL_ENABLED(chunk->sinfo.sinfo_flags) && | 307 | if (SCTP_PR_TTL_ENABLED(chunk->sinfo.sinfo_flags) && |
308 | time_after(jiffies, chunk->msg->expires_at)) { | 308 | time_after(jiffies, chunk->msg->expires_at)) { |
309 | struct sctp_stream_out *streamout = | 309 | struct sctp_stream_out *streamout = |
310 | &chunk->asoc->stream->out[chunk->sinfo.sinfo_stream]; | 310 | &chunk->asoc->stream.out[chunk->sinfo.sinfo_stream]; |
311 | 311 | ||
312 | if (chunk->sent_count) { | 312 | if (chunk->sent_count) { |
313 | chunk->asoc->abandoned_sent[SCTP_PR_INDEX(TTL)]++; | 313 | chunk->asoc->abandoned_sent[SCTP_PR_INDEX(TTL)]++; |
@@ -320,7 +320,7 @@ int sctp_chunk_abandoned(struct sctp_chunk *chunk) | |||
320 | } else if (SCTP_PR_RTX_ENABLED(chunk->sinfo.sinfo_flags) && | 320 | } else if (SCTP_PR_RTX_ENABLED(chunk->sinfo.sinfo_flags) && |
321 | chunk->sent_count > chunk->sinfo.sinfo_timetolive) { | 321 | chunk->sent_count > chunk->sinfo.sinfo_timetolive) { |
322 | struct sctp_stream_out *streamout = | 322 | struct sctp_stream_out *streamout = |
323 | &chunk->asoc->stream->out[chunk->sinfo.sinfo_stream]; | 323 | &chunk->asoc->stream.out[chunk->sinfo.sinfo_stream]; |
324 | 324 | ||
325 | chunk->asoc->abandoned_sent[SCTP_PR_INDEX(RTX)]++; | 325 | chunk->asoc->abandoned_sent[SCTP_PR_INDEX(RTX)]++; |
326 | streamout->abandoned_sent[SCTP_PR_INDEX(RTX)]++; | 326 | streamout->abandoned_sent[SCTP_PR_INDEX(RTX)]++; |