summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeepak S <deepak.s@linux.intel.com>2018-08-09 10:30:51 +0530
committerDeepak S <deepak.s@linux.intel.com>2018-08-09 10:30:59 +0530
commit4e70037968d120b27b5360107ef3ab2e5a5f57b7 (patch)
tree98250996be215dd6f9183ae76c58486c18caf4a4
parent441879cee2b4267b5b7c2f22cc586e4a45c6955f (diff)
update from src port in the pvt/pub handler
Change-Id: Iccd72f6ab3db68bc093c42d60d225fe86f8fbda7 Signed-off-by: Deepak S <deepak.s@linux.intel.com>
-rw-r--r--VNFs/vCGNAPT/pipeline/pipeline_cgnapt_be.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/VNFs/vCGNAPT/pipeline/pipeline_cgnapt_be.c b/VNFs/vCGNAPT/pipeline/pipeline_cgnapt_be.c
index a5f9e4ef..dc8a627c 100644
--- a/VNFs/vCGNAPT/pipeline/pipeline_cgnapt_be.c
+++ b/VNFs/vCGNAPT/pipeline/pipeline_cgnapt_be.c
@@ -1970,9 +1970,8 @@ static int cgnapt_in_port_ah_mix(struct rte_pipeline *rte_p,
/* Gateway Proc Starts */
struct arp_entry_data *ret_arp_data = NULL;
- uint32_t src_phy_port = *src_port;
-
- dest_if = prv_to_pub_map[src_phy_port];
+ uint32_t src_phy_port = pkts[pkt_index]->port;
+ dest_if = prv_to_pub_map[src_phy_port];
gw_get_route_nh_port_ipv4(dest_address,
&dest_if, &nhip, dest_if);
@@ -2218,7 +2217,7 @@ static int cgnapt_in_port_ah_mix(struct rte_pipeline *rte_p,
struct arp_entry_data *ret_arp_data = NULL;
dest_if = INVALID_DESTIF;
- uint32_t src_phy_port = *src_port;
+ uint32_t src_phy_port = pkts[pkt_index]->port;
dest_if = pub_to_prv_map[src_phy_port];
gw_get_route_nh_port_ipv4(dest_address,
&dest_if, &nhip, dest_if);
@@ -3728,7 +3727,7 @@ pkt_work_cgnapt_ipv4_prv(
uint32_t nhip = 0;
struct arp_entry_data *ret_arp_data = NULL;
- uint32_t src_phy_port = *src_port;
+ uint32_t src_phy_port = pkt->port;
dest_if = prv_to_pub_map[src_phy_port];
gw_get_route_nh_port_ipv4(dest_address,
&dest_if, &nhip, dest_if);
@@ -4082,8 +4081,7 @@ pkt_work_cgnapt_ipv4_pub(
dest_address = entry->data.u.prv_ip;
struct arp_entry_data *ret_arp_data = NULL;
- uint32_t src_phy_port = *src_port;
-
+ uint32_t src_phy_port = pkt->port;
dest_if = pub_to_prv_map[src_phy_port];
gw_get_route_nh_port_ipv4(dest_address,
@@ -4534,7 +4532,7 @@ pkt4_work_cgnapt_ipv4_prv(
dest_address = rte_bswap32(*dst_addr);
struct arp_entry_data *ret_arp_data = NULL;
uint64_t start, end;
- uint32_t src_phy_port = *src_port;
+ uint32_t src_phy_port = pkt->port;
dest_if = prv_to_pub_map[src_phy_port];
gw_get_route_nh_port_ipv4(dest_address,
&dest_if, &nhip, dest_if);
@@ -4905,7 +4903,7 @@ pkt4_work_cgnapt_ipv4_pub(
}
dest_address = entry->data.u.prv_ip;
struct arp_entry_data *ret_arp_data = NULL;
- uint32_t src_phy_port = *src_port;
+ uint32_t src_phy_port = pkt->port;
dest_if = pub_to_prv_map[src_phy_port];
gw_get_route_nh_port_ipv4(dest_address,
&dest_if, &nhip, dest_if);
@@ -6085,8 +6083,7 @@ pkt_work_cgnapt_ipv6_prv(
struct arp_entry_data *ret_arp_data;
- uint32_t src_phy_port = *src_port;
-
+ uint32_t src_phy_port = pkt->port;
dest_if = prv_to_pub_map[src_phy_port];
gw_get_route_nh_port_ipv4(dest_address,
&dest_if, &nhip, dest_if);
@@ -6578,7 +6575,7 @@ pkt4_work_cgnapt_ipv6_prv(
{
struct arp_entry_data *ret_arp_data;
- uint32_t src_phy_port = *src_port;
+ uint32_t src_phy_port = pkt->port;
dest_if = prv_to_pub_map[src_phy_port];
gw_get_route_nh_port_ipv4(dest_address,
&dest_if, &nhip, dest_if);