trafgen: fix dinc()/ddec() modifiers
commite207624c6d92e9c2979e1e310cab660f0320ca48
authorPaolo Abeni <pabeni@redhat.com>
Thu, 14 Dec 2017 12:04:12 +0000 (14 13:04 +0100)
committerTobias Klauser <tklauser@distanz.ch>
Thu, 14 Dec 2017 14:45:08 +0000 (14 15:45 +0100)
tree7ebcbe0596dae05d2449a6a2d75c42658cda838e
parentfe87d2b6117de1e32769b388fe1704440e339d27
trafgen: fix dinc()/ddec() modifiers

currently, after dinc(), the valued stored inside the packet is
not in the (min, max) range but in the (0, max - min + 1) range,
'counter->val' should be used instead of 'val'.

Additionally the values computed for ddec() are corrupted, in:

val = (val - counter->inc) % (counter->min - counter->max + 1);

the divider is negative, we should use (counter->max - counter->min + 1)
as in the INC case.

Finally we can avoid the switch statement at update time, inverting
the value of 'counter->inc' for decrement and using a data type wide
enough for the 'inc' field.

v1 -> v2:
 - changed 'counter->inc' type to int

Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
trafgen.c
trafgen_conf.h
trafgen_parser.y