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/unix/tuntap.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/unix/tuntap.c')
-rw-r--r-- | src/vnet/unix/tuntap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/unix/tuntap.c b/src/vnet/unix/tuntap.c index e002a248ce4..ce7b260f393 100644 --- a/src/vnet/unix/tuntap.c +++ b/src/vnet/unix/tuntap.c @@ -243,7 +243,7 @@ tuntap_rx (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame) tuntap_main_t *tm = &tuntap_main; vlib_buffer_t *b; u32 bi; - const uword buffer_size = VLIB_BUFFER_DATA_SIZE; + const uword buffer_size = vlib_bufer_get_default_size (vm); u16 thread_index = vm->thread_index; /** Make sure we have some RX buffers. */ @@ -490,7 +490,7 @@ tuntap_config (vlib_main_t * vm, unformat_input_t * input) u8 *name; int flags = IFF_TUN | IFF_NO_PI; int is_enabled = 0, is_ether = 0, have_normal_interface = 0; - const uword buffer_size = VLIB_BUFFER_DATA_SIZE; + const uword buffer_size = vlib_bufer_get_default_size (vm); while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) { |