diff options
author | Damjan Marion <damarion@cisco.com> | 2019-02-06 14:22:32 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-02-06 18:00:17 +0000 |
commit | 5de3fec531691a81b3f77ed965488dc8dbf1e9a1 (patch) | |
tree | 57b8dde55804ab52a6ef40767f1fe705c1968d2a /src/vnet/pg/cli.c | |
parent | 672ab690182f3d4941d2640c68bb6ced38880bc3 (diff) |
buffers: make buffer data size configurable from startup config
Example:
buffers {
default data-size 1536
}
Change-Id: I5b4436850ca18025c9fdcfc7ed648c2c2732d660
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet/pg/cli.c')
-rw-r--r-- | src/vnet/pg/cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/pg/cli.c b/src/vnet/pg/cli.c index bca05515379..4053887633d 100644 --- a/src/vnet/pg/cli.c +++ b/src/vnet/pg/cli.c @@ -341,7 +341,7 @@ new_stream (vlib_main_t * vm, s.sw_if_index[VLIB_RX] = s.sw_if_index[VLIB_TX] = ~0; s.node_index = ~0; s.max_packet_bytes = s.min_packet_bytes = 64; - s.buffer_bytes = VLIB_BUFFER_DATA_SIZE; + s.buffer_bytes = vlib_bufer_get_default_size (vm); s.if_id = 0; pcap_file_name = 0; while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |