summaryrefslogtreecommitdiffstats
path: root/VNFs/DPPD-PROX/prox_port_cfg.h
diff options
context:
space:
mode:
authorXavier Simonart <xavier.simonart@intel.com>2020-09-22 12:42:06 +0200
committerXavier Simonart <xavier.simonart@intel.com>2020-10-16 14:32:53 +0200
commitf9b0da859a9f2a6556f0437d5cff42a0648dcab2 (patch)
tree3b48c310d87547912a2f0fa3e17c34b0e9a594df /VNFs/DPPD-PROX/prox_port_cfg.h
parent0d1b97e647224d3d977186523d45555bc819f42a (diff)
Report failure when tap port is not mapped to real dpdk port.
When using "vdev=" in port section, a tap device and an additional dpdk port are created. In most cases, we still want to use a real DPDK device (i.e. bound to an interface such as virtio or a PF or a VF). PROX will now report by default an error when the used [port] is not a DPDK bound device. An additional parameter "virtual=yes" can be added in the port section in case one want to disable this error checking (e.g. specify additional parameter for the vdev device). This patch also fixes a potential endianess issue when configuring IP addresses. Change-Id: Iffdd9552308be3b77cfe2067630647acac2c01fe Signed-off-by: Xavier Simonart <xavier.simonart@intel.com>
Diffstat (limited to 'VNFs/DPPD-PROX/prox_port_cfg.h')
-rw-r--r--VNFs/DPPD-PROX/prox_port_cfg.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/VNFs/DPPD-PROX/prox_port_cfg.h b/VNFs/DPPD-PROX/prox_port_cfg.h
index 738ce86a..50359202 100644
--- a/VNFs/DPPD-PROX/prox_port_cfg.h
+++ b/VNFs/DPPD-PROX/prox_port_cfg.h
@@ -88,6 +88,7 @@ struct prox_port_cfg {
int fds[PROX_MAX_VLAN_TAGS];
uint32_t vlan_tags[PROX_MAX_VLAN_TAGS];
uint8_t is_vdev;
+ uint8_t virtual;
uint8_t all_rx_queues;
uint16_t n_vlans;
};