From 87d7bac5cf2ebdc7820e1edaadc2cc3b6d111cf2 Mon Sep 17 00:00:00 2001 From: "Christian E. Hopps" Date: Fri, 27 Sep 2019 12:59:30 -0400 Subject: misc: add "maxframe" and "rate" to packet-generator cli. Allow for setting the maximum number of generated packets to be included in the frame passed to next nodes. This is very important for testing code which may be susceptible to multi-frame vs single-frame bugs (e.g., code that is doing re-ordering where packets may be buffered between frames). Update: - remove redundant packet "rate" option. - reduce n_max_frame to u32 as that's what pulled from the CLI. Type: feature Signed-off-by: Christian E. Hopps Change-Id: Ie362bbb110b2cf01d9f65c559bbe9101e17b7fdc Signed-off-by: Christian Hopps --- src/vnet/pg/pg.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/vnet/pg/pg.h') diff --git a/src/vnet/pg/pg.h b/src/vnet/pg/pg.h index aef7a5bbf71..c73634f3125 100644 --- a/src/vnet/pg/pg.h +++ b/src/vnet/pg/pg.h @@ -155,6 +155,9 @@ typedef struct pg_stream_t Zero means no packet limit. */ u64 n_packets_limit; + /* Only generate up to n_max_frame per frame. */ + u32 n_max_frame; + /* Rate for this stream in packets/second. Zero means unlimited rate. */ f64 rate_packets_per_second; -- cgit 1.2.3-korg