[Sumover-dev] [svn commit] r4496 - vic/branches/cc/cc

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Tue Jul 28 12:21:19 BST 2009


Author: soohyunc
Date: Tue Jul 28 12:21:18 2009
New Revision: 4496

Modified:
   vic/branches/cc/cc/tfwc_rcvr.h

Log:
TFWC AckVec size increased - previously, AckVec can manage up to 512 outstanding
packets in the networks (because AVSZ was 32, tot # of outstanding packets can
be 16 * 32 = 1024).

It is now set to some large number (e.g., AVSZ = 256), thus AckVec can handle 16
* 256 = 4096 outstanding packets (which seems to be enough for large BDP network).



Modified: vic/branches/cc/cc/tfwc_rcvr.h
==============================================================================
--- vic/branches/cc/cc/tfwc_rcvr.h	(original)
+++ vic/branches/cc/cc/tfwc_rcvr.h	Tue Jul 28 12:21:18 2009
@@ -38,7 +38,9 @@
 
 #include "tfwc_sndr.h"
 
-#define	AVSZ	32		// tfwcAV size
+// AckVec Size (AVSZ)
+// - AckVec can manage "16 * AVSZ" outstanding packets
+#define	AVSZ	256		// tfwcAV size
 
 class TfwcRcvr {
 public:



More information about the Sumover-dev mailing list