aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/sctp/associola.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/associola.c b/net/sctp/associola.c
index 68428e1f7181..56ddcfaeb4f6 100644
--- a/net/sctp/associola.c
+++ b/net/sctp/associola.c
@@ -1539,7 +1539,7 @@ void sctp_assoc_rwnd_decrease(struct sctp_association *asoc, unsigned int len)
1539 asoc->rwnd = 0; 1539 asoc->rwnd = 0;
1540 } 1540 }
1541 } else { 1541 } else {
1542 asoc->rwnd_over = len - asoc->rwnd; 1542 asoc->rwnd_over += len - asoc->rwnd;
1543 asoc->rwnd = 0; 1543 asoc->rwnd = 0;
1544 } 1544 }
1545 1545