diff options
author | Steven <sluong@cisco.com> | 2018-09-18 12:34:59 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-09-18 22:50:21 +0000 |
commit | 33e6583e541ab411ff91dc6e991e1b852e39b520 (patch) | |
tree | 85ce37466fad0f3045e5986d0be3046e7e43d595 /src/plugins/vmxnet3/vmxnet3.h | |
parent | 45e1cd92cadf15dd3ce84ff28feb8f70aff0a1e0 (diff) |
vmxnet3: add support for "non-default" next node
Support feature arc
Support set interface next node
Enqueue packet to either ip4, ip6, or ethernet_input based on packet type
Change-Id: I11fb6bba98ee0bfa1d057474fc6cf3be48ef1c48
Signed-off-by: Steven <sluong@cisco.com>
Diffstat (limited to 'src/plugins/vmxnet3/vmxnet3.h')
-rw-r--r-- | src/plugins/vmxnet3/vmxnet3.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/vmxnet3/vmxnet3.h b/src/plugins/vmxnet3/vmxnet3.h index 13799407d1e..666dec77b38 100644 --- a/src/plugins/vmxnet3/vmxnet3.h +++ b/src/plugins/vmxnet3/vmxnet3.h @@ -66,6 +66,8 @@ enum #define VMXNET3_RXF_BTYPE (1 << 14) /* rx body buffer type */ #define VMXNET3_RXF_GEN (1 << 31) /* rx generation */ +#define VMXNET3_RXCF_IP6 (1 << 20) /* rx ip6 packet */ +#define VMXNET3_RXCF_IP4 (1 << 21) /* rx ip4 packet */ #define VMXNET3_RXCF_GEN (1 << 31) /* rx completion generation */ #define VMXNET3_RXC_INDEX (0xFFF) /* rx completion index mask */ |