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/interface_funcs.h | |
parent | 5b311202b82a827c712d2cb7604c56049266adc9 (diff) |
P2P Ethernet
Change-Id: Idb97e573961b3bc2acdeef77582314590795f8c3
Signed-off-by: Pavel Kotucek <pkotucek@cisco.com>
Diffstat (limited to 'src/vnet/interface_funcs.h')
-rw-r--r-- | src/vnet/interface_funcs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vnet/interface_funcs.h b/src/vnet/interface_funcs.h index 26eef9b9d87..142bef57465 100644 --- a/src/vnet/interface_funcs.h +++ b/src/vnet/interface_funcs.h @@ -73,7 +73,8 @@ always_inline vnet_sw_interface_t * vnet_get_sup_sw_interface (vnet_main_t * vnm, u32 sw_if_index) { vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, sw_if_index); - if (sw->type == VNET_SW_INTERFACE_TYPE_SUB) + if (sw->type == VNET_SW_INTERFACE_TYPE_SUB || + sw->type == VNET_SW_INTERFACE_TYPE_P2P) sw = vnet_get_sw_interface (vnm, sw->sup_sw_if_index); return sw; } |