diff options
author | Ian McDonald <ian.mcdonald@jandi.co.nz> | 2007-03-20 13:46:52 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:26:50 -0400 |
commit | 551dc5f7a11cfb66685bfd36cbbdb209c5a11d14 (patch) | |
tree | 54fe446ac294e4bbe8229bb5dc9921e84a468916 /net/dccp | |
parent | 371fe7779cad6557a58df9a1b5543652e067400f (diff) |
[CCID3]: Fix use of invalid loss intervals
This fixes a bug which uses an invalid comparison.
The bug resulted in the use of invalid loss intervals.
Signed-off-by: Ian McDonald <ian.mcdonald@jandi.co.nz>
Acked-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp')
-rw-r--r-- | net/dccp/ccids/lib/loss_interval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/ccids/lib/loss_interval.c b/net/dccp/ccids/lib/loss_interval.c index 0a0baef16b3e..372d7e75cdd8 100644 --- a/net/dccp/ccids/lib/loss_interval.c +++ b/net/dccp/ccids/lib/loss_interval.c | |||
@@ -91,7 +91,7 @@ u32 dccp_li_hist_calc_i_mean(struct list_head *list) | |||
91 | u32 w_tot = 0; | 91 | u32 w_tot = 0; |
92 | 92 | ||
93 | list_for_each_entry_safe(li_entry, li_next, list, dccplih_node) { | 93 | list_for_each_entry_safe(li_entry, li_next, list, dccplih_node) { |
94 | if (li_entry->dccplih_interval != ~0) { | 94 | if (li_entry->dccplih_interval != ~0U) { |
95 | i_tot0 += li_entry->dccplih_interval * dccp_li_hist_w[i]; | 95 | i_tot0 += li_entry->dccplih_interval * dccp_li_hist_w[i]; |
96 | w_tot += dccp_li_hist_w[i]; | 96 | w_tot += dccp_li_hist_w[i]; |
97 | if (i != 0) | 97 | if (i != 0) |