aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/ccids/ccid2.h
diff options
context:
space:
mode:
authorGerrit Renker <gerrit@erg.abdn.ac.uk>2007-10-04 14:41:55 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 16:54:34 -0700
commitee196c2186d24d82088c94962598470e5abc081f (patch)
tree18d6f4382ae847c9e6091de8f766eb2918f11a99 /net/dccp/ccids/ccid2.h
parent7d9e8931f93683e575679e41f188d3b465269f08 (diff)
downloadkernel_samsung_smdk4412-ee196c2186d24d82088c94962598470e5abc081f.zip
kernel_samsung_smdk4412-ee196c2186d24d82088c94962598470e5abc081f.tar.gz
kernel_samsung_smdk4412-ee196c2186d24d82088c94962598470e5abc081f.tar.bz2
[CCID2]: Remove redundant BUG_ON
This removes a test for `val < 1' which would only have been triggered when val < 0, due to a preceding test for 0. Fixed by using an unsigned type for cwnd (as in TCP) instead. Signed-off-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/ccids/ccid2.h')
-rw-r--r--net/dccp/ccids/ccid2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/ccids/ccid2.h b/net/dccp/ccids/ccid2.h
index ebd7949..d9daa53 100644
--- a/net/dccp/ccids/ccid2.h
+++ b/net/dccp/ccids/ccid2.h
@@ -50,7 +50,7 @@ struct ccid2_seq {
* @ccid2hctx_rpdupack - dupacks since rpseq
*/
struct ccid2_hc_tx_sock {
- int ccid2hctx_cwnd;
+ u32 ccid2hctx_cwnd;
int ccid2hctx_ssacks;
int ccid2hctx_acks;
unsigned int ccid2hctx_ssthresh;