diff options
author | Pavel Kotucek <pkotucek@cisco.com> | 2017-06-20 14:00:26 +0200 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2017-08-01 14:44:13 +0000 |
commit | 15ac81c16fba83033090299413a3a2dbb848a0f9 (patch) | |
tree | ca9617e0faa21847be31e47c0c65ffc0cacf47eb /src/vnet/devices | |
parent | 5b311202b82a827c712d2cb7604c56049266adc9 (diff) |
P2P Ethernet
Change-Id: Idb97e573961b3bc2acdeef77582314590795f8c3
Signed-off-by: Pavel Kotucek <pkotucek@cisco.com>
Diffstat (limited to 'src/vnet/devices')
-rw-r--r-- | src/vnet/devices/devices.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vnet/devices/devices.c b/src/vnet/devices/devices.c index f64c6e0dea5..2eb8e30e076 100644 --- a/src/vnet/devices/devices.c +++ b/src/vnet/devices/devices.c @@ -77,6 +77,12 @@ VNET_FEATURE_INIT (span_input, static) = { .runs_before = VNET_FEATURES ("ethernet-input"), }; +VNET_FEATURE_INIT (p2p_ethernet_node, static) = { + .arc_name = "device-input", + .node_name = "p2p-ethernet-input", + .runs_before = VNET_FEATURES ("ethernet-input"), +}; + VNET_FEATURE_INIT (ethernet_input, static) = { .arc_name = "device-input", .node_name = "ethernet-input", |