Note invalidity of realtick for

captypes ETH_CAPTYPE_OTHERPOD2 and
ETH_CAPTYPE_GIGPOD2 in comments for
the associated TpS tables.

svn path=/trunk/; revision=22074
This commit is contained in:
Bill Meier 2007-06-11 15:50:03 +00:00
parent 1e2e9d4f7e
commit 68cdbd4e65
1 changed files with 7 additions and 5 deletions

View File

@ -216,8 +216,8 @@ static double TpS[] = { 1e6, 1193000.0, 1193182.0 };
* XXX: Note that the TpS_otherpod[2] value is 1250000.0; It seems
* reasonable to suspect that the original claim might actually
* have been for a capture with a captype of 'otherpod'.
* (Based upon captures reviewed realtick does not contain the
* correct TpS values for 'otherpod' or 'gigpod' captypes).
* (Based upon captures reviewed realtick does not contain the
* correct TpS values for the 'gigpod' captype).
*/
static double TpS_gigpod[] = { 1e9, 0.0, 31250000.0 };
#define NUM_NETXRAY_TIMEUNITS_GIGPOD (sizeof TpS_gigpod / sizeof TpS_gigpod[0])
@ -225,21 +225,23 @@ static double TpS_gigpod[] = { 1e9, 0.0, 31250000.0 };
/*
* Table of time units for Ethernet captures with captype ETH_CAPTYPE_OTHERPOD.
* (Based upon captures reviewed realtick does not contain the
* correct TpS values for 'otherpod' or 'gigpod' captypes).
* correct TpS values for the 'otherpod' captype).
*/
static double TpS_otherpod[] = { 1e6, 0.0, 1250000.0 };
#define NUM_NETXRAY_TIMEUNITS_OTHERPOD (sizeof TpS_otherpod / sizeof TpS_otherpod[0])
/*
* Table of time units for Ethernet captures with captype ETH_CAPTYPE_OTHERPOD2.
* XXX - does realtick contain the correct TpS values for any of these captypes?)
* (Based upon captures reviewed realtick does not contain the
* correct TpS values for the 'otherpod2' captype).
*/
static double TpS_otherpod2[] = { 1e6, 0.0, 0.0 };
#define NUM_NETXRAY_TIMEUNITS_OTHERPOD2 (sizeof TpS_otherpod2 / sizeof TpS_otherpod2[0])
/*
* Table of time units for Ethernet captures with captype ETH_CAPTYPE_GIGPOD2.
* XXX - does realtick contain the correct TpS values for any of these captypes?)
* (Based upon captures reviewed realtick does not contain the
* correct TpS values for the 'gigpod2' captype).
*/
static double TpS_gigpod2[] = { 1e9, 0.0, 20000000.0 };
#define NUM_NETXRAY_TIMEUNITS_GIGPOD2 (sizeof TpS_gigpod2 / sizeof TpS_gigpod2[0])