[NETEM]: use better types for time values
The random number generator always generates 32 bit values. The time values are limited by psched_tdiff_t Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
a362e0a789
commit
b407621c35
@@ -57,19 +57,20 @@ struct netem_sched_data {
|
|||||||
struct Qdisc *qdisc;
|
struct Qdisc *qdisc;
|
||||||
struct qdisc_watchdog watchdog;
|
struct qdisc_watchdog watchdog;
|
||||||
|
|
||||||
u32 latency;
|
psched_tdiff_t latency;
|
||||||
|
psched_tdiff_t jitter;
|
||||||
|
|
||||||
u32 loss;
|
u32 loss;
|
||||||
u32 limit;
|
u32 limit;
|
||||||
u32 counter;
|
u32 counter;
|
||||||
u32 gap;
|
u32 gap;
|
||||||
u32 jitter;
|
|
||||||
u32 duplicate;
|
u32 duplicate;
|
||||||
u32 reorder;
|
u32 reorder;
|
||||||
u32 corrupt;
|
u32 corrupt;
|
||||||
|
|
||||||
struct crndstate {
|
struct crndstate {
|
||||||
unsigned long last;
|
u32 last;
|
||||||
unsigned long rho;
|
u32 rho;
|
||||||
} delay_cor, loss_cor, dup_cor, reorder_cor, corrupt_cor;
|
} delay_cor, loss_cor, dup_cor, reorder_cor, corrupt_cor;
|
||||||
|
|
||||||
struct disttable {
|
struct disttable {
|
||||||
@@ -96,7 +97,7 @@ static void init_crandom(struct crndstate *state, unsigned long rho)
|
|||||||
* Next number depends on last value.
|
* Next number depends on last value.
|
||||||
* rho is scaled to avoid floating point.
|
* rho is scaled to avoid floating point.
|
||||||
*/
|
*/
|
||||||
static unsigned long get_crandom(struct crndstate *state)
|
static u32 get_crandom(struct crndstate *state)
|
||||||
{
|
{
|
||||||
u64 value, rho;
|
u64 value, rho;
|
||||||
unsigned long answer;
|
unsigned long answer;
|
||||||
@@ -115,11 +116,13 @@ static unsigned long get_crandom(struct crndstate *state)
|
|||||||
* std deviation sigma. Uses table lookup to approximate the desired
|
* std deviation sigma. Uses table lookup to approximate the desired
|
||||||
* distribution, and a uniformly-distributed pseudo-random source.
|
* distribution, and a uniformly-distributed pseudo-random source.
|
||||||
*/
|
*/
|
||||||
static long tabledist(unsigned long mu, long sigma,
|
static psched_tdiff_t tabledist(psched_tdiff_t mu, psched_tdiff_t sigma,
|
||||||
struct crndstate *state, const struct disttable *dist)
|
struct crndstate *state,
|
||||||
|
const struct disttable *dist)
|
||||||
{
|
{
|
||||||
long t, x;
|
psched_tdiff_t x;
|
||||||
unsigned long rnd;
|
long t;
|
||||||
|
u32 rnd;
|
||||||
|
|
||||||
if (sigma == 0)
|
if (sigma == 0)
|
||||||
return mu;
|
return mu;
|
||||||
|
Reference in New Issue
Block a user