diff options
author | Deepak S <deepak.s@linux.intel.com> | 2018-06-03 03:36:25 +0530 |
---|---|---|
committer | Deepak S <deepak.s@linux.intel.com> | 2018-06-03 03:36:41 +0530 |
commit | 552f5992678ad6a226e0c8216eafed9a795c96ee (patch) | |
tree | c147df2c02ee1dbaafe04117cc62e9679639e688 /common/VIL/l2l3_stack | |
parent | b18290d21a28cabbb8b7a31b9c54b7c30e62ec19 (diff) |
Temp Fix for vFW perf issue
Change-Id: I324fcac7a65c0d221d5d422f419deb9c0f864172
Signed-off-by: Deepak S <deepak.s@linux.intel.com>
Diffstat (limited to 'common/VIL/l2l3_stack')
-rw-r--r-- | common/VIL/l2l3_stack/lib_arp.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/common/VIL/l2l3_stack/lib_arp.c b/common/VIL/l2l3_stack/lib_arp.c index d59f4b79..9ea57d77 100644 --- a/common/VIL/l2l3_stack/lib_arp.c +++ b/common/VIL/l2l3_stack/lib_arp.c @@ -294,20 +294,12 @@ struct arp_entry_data *get_dest_mac_addr_ipv4(const uint32_t nhip, uint32_t phy_port, struct ether_addr *hw_addr) { struct arp_entry_data *ret_arp_data = NULL; - struct ether_addr *x; uint8_t index; /* as part of optimization we store mac address in cache * & thus can be sent without having to retrieve */ - if (arp_cache_dest_mac_present(phy_port)) { - x = get_local_cache_hw_addr(phy_port, nhip); - if (!x) { - printf("local copy of address not stored\n"); - return NULL; - } - - ether_addr_copy(x, hw_addr); + if (likely(arp_cache_dest_mac_present(phy_port))) { return &arp_entry_data_default; } |