From: Damjan Marion Date: Tue, 27 Mar 2018 20:00:17 +0000 (+0200) Subject: avf: keep input node in disabled state unless needed X-Git-Tag: v18.04-rc1~36 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=d4ac4bb26618053b1960dcdf963225884af54d4f;p=vpp.git avf: keep input node in disabled state unless needed Change-Id: I9a0105aa2373bd4db218851b1bbee50c6b6dfc7d Signed-off-by: Damjan Marion --- diff --git a/src/plugins/avf/input.c b/src/plugins/avf/input.c index a769bf79646..931bfa39de9 100644 --- a/src/plugins/avf/input.c +++ b/src/plugins/avf/input.c @@ -407,7 +407,7 @@ VLIB_REGISTER_NODE (avf_input_node) = { .sibling_of = "device-input", .format_trace = format_avf_input_trace, .type = VLIB_NODE_TYPE_INPUT, - .state = VLIB_NODE_STATE_POLLING, + .state = VLIB_NODE_STATE_DISABLED, .n_errors = AVF_INPUT_N_ERROR, .error_strings = avf_input_error_strings, };