summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAsaf Penso <asafp@mellanox.com>2019-02-04 16:14:41 +0000
committerIan Stokes <ian.stokes@intel.com>2019-02-06 11:41:21 +0000
commitfa2353af7ecc667adf3472658dfa71d0c6575505 (patch)
treef360c0ff3cc86de8b731b6f4dce555cf7d628a87 /lib
parent49d6aafb9cc644e358c231350f9723ba01de8f55 (diff)
downloadopenvswitch-fa2353af7ecc667adf3472658dfa71d0c6575505.tar.gz
netdev-dpdk: Memset rte_flow_item on a need basis.
In netdev_dpdk_add_rte_flow_offload function different rte_flow_item are created as part of the pattern matching. For most of them, there is a check whether the wildcards are not zero. In case of zero, nothing is being done with the rte_flow_item. Befor the wildcard check, and regardless of the result, the rte_flow_item is being memset. The patch moves the memset function only if the condition of the wildcard is true, thus saving cycles of memset if not needed. Signed-off-by: Asaf Penso <asafp@mellanox.com> Acked-by: Ilya Maximets <i.maximets@samsung.com> Signed-off-by: Ian Stokes <ian.stokes@intel.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/netdev-dpdk.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/lib/netdev-dpdk.c b/lib/netdev-dpdk.c
index 4bf0ca9e8..f07b10c88 100644
--- a/lib/netdev-dpdk.c
+++ b/lib/netdev-dpdk.c
@@ -4570,18 +4570,18 @@ netdev_dpdk_add_rte_flow_offload(struct netdev *netdev,
/* Eth */
struct rte_flow_item_eth eth_spec;
struct rte_flow_item_eth eth_mask;
- memset(&eth_spec, 0, sizeof(eth_spec));
- memset(&eth_mask, 0, sizeof(eth_mask));
if (!eth_addr_is_zero(match->wc.masks.dl_src) ||
!eth_addr_is_zero(match->wc.masks.dl_dst)) {
- rte_memcpy(&eth_spec.dst, &match->flow.dl_dst, sizeof(eth_spec.dst));
- rte_memcpy(&eth_spec.src, &match->flow.dl_src, sizeof(eth_spec.src));
+ memset(&eth_spec, 0, sizeof eth_spec);
+ memset(&eth_mask, 0, sizeof eth_mask);
+ rte_memcpy(&eth_spec.dst, &match->flow.dl_dst, sizeof eth_spec.dst);
+ rte_memcpy(&eth_spec.src, &match->flow.dl_src, sizeof eth_spec.src);
eth_spec.type = match->flow.dl_type;
rte_memcpy(&eth_mask.dst, &match->wc.masks.dl_dst,
- sizeof(eth_mask.dst));
+ sizeof eth_mask.dst);
rte_memcpy(&eth_mask.src, &match->wc.masks.dl_src,
- sizeof(eth_mask.src));
+ sizeof eth_mask.src);
eth_mask.type = match->wc.masks.dl_type;
add_flow_pattern(&patterns, RTE_FLOW_ITEM_TYPE_ETH,
@@ -4600,9 +4600,9 @@ netdev_dpdk_add_rte_flow_offload(struct netdev *netdev,
/* VLAN */
struct rte_flow_item_vlan vlan_spec;
struct rte_flow_item_vlan vlan_mask;
- memset(&vlan_spec, 0, sizeof(vlan_spec));
- memset(&vlan_mask, 0, sizeof(vlan_mask));
if (match->wc.masks.vlans[0].tci && match->flow.vlans[0].tci) {
+ memset(&vlan_spec, 0, sizeof vlan_spec);
+ memset(&vlan_mask, 0, sizeof vlan_mask);
vlan_spec.tci = match->flow.vlans[0].tci & ~htons(VLAN_CFI);
vlan_mask.tci = match->wc.masks.vlans[0].tci & ~htons(VLAN_CFI);
@@ -4617,9 +4617,9 @@ netdev_dpdk_add_rte_flow_offload(struct netdev *netdev,
uint8_t proto = 0;
struct rte_flow_item_ipv4 ipv4_spec;
struct rte_flow_item_ipv4 ipv4_mask;
- memset(&ipv4_spec, 0, sizeof(ipv4_spec));
- memset(&ipv4_mask, 0, sizeof(ipv4_mask));
if (match->flow.dl_type == htons(ETH_TYPE_IP)) {
+ memset(&ipv4_spec, 0, sizeof ipv4_spec);
+ memset(&ipv4_mask, 0, sizeof ipv4_mask);
ipv4_spec.hdr.type_of_service = match->flow.nw_tos;
ipv4_spec.hdr.time_to_live = match->flow.nw_ttl;
@@ -4662,9 +4662,9 @@ netdev_dpdk_add_rte_flow_offload(struct netdev *netdev,
struct rte_flow_item_tcp tcp_spec;
struct rte_flow_item_tcp tcp_mask;
- memset(&tcp_spec, 0, sizeof(tcp_spec));
- memset(&tcp_mask, 0, sizeof(tcp_mask));
if (proto == IPPROTO_TCP) {
+ memset(&tcp_spec, 0, sizeof tcp_spec);
+ memset(&tcp_mask, 0, sizeof tcp_mask);
tcp_spec.hdr.src_port = match->flow.tp_src;
tcp_spec.hdr.dst_port = match->flow.tp_dst;
tcp_spec.hdr.data_off = ntohs(match->flow.tcp_flags) >> 8;
@@ -4687,9 +4687,9 @@ netdev_dpdk_add_rte_flow_offload(struct netdev *netdev,
struct rte_flow_item_udp udp_spec;
struct rte_flow_item_udp udp_mask;
- memset(&udp_spec, 0, sizeof(udp_spec));
- memset(&udp_mask, 0, sizeof(udp_mask));
if (proto == IPPROTO_UDP) {
+ memset(&udp_spec, 0, sizeof udp_spec);
+ memset(&udp_mask, 0, sizeof udp_mask);
udp_spec.hdr.src_port = match->flow.tp_src;
udp_spec.hdr.dst_port = match->flow.tp_dst;
@@ -4708,9 +4708,9 @@ netdev_dpdk_add_rte_flow_offload(struct netdev *netdev,
struct rte_flow_item_sctp sctp_spec;
struct rte_flow_item_sctp sctp_mask;
- memset(&sctp_spec, 0, sizeof(sctp_spec));
- memset(&sctp_mask, 0, sizeof(sctp_mask));
if (proto == IPPROTO_SCTP) {
+ memset(&sctp_spec, 0, sizeof sctp_spec);
+ memset(&sctp_mask, 0, sizeof sctp_mask);
sctp_spec.hdr.src_port = match->flow.tp_src;
sctp_spec.hdr.dst_port = match->flow.tp_dst;
@@ -4729,9 +4729,9 @@ netdev_dpdk_add_rte_flow_offload(struct netdev *netdev,
struct rte_flow_item_icmp icmp_spec;
struct rte_flow_item_icmp icmp_mask;
- memset(&icmp_spec, 0, sizeof(icmp_spec));
- memset(&icmp_mask, 0, sizeof(icmp_mask));
if (proto == IPPROTO_ICMP) {
+ memset(&icmp_spec, 0, sizeof icmp_spec);
+ memset(&icmp_mask, 0, sizeof icmp_mask);
icmp_spec.hdr.icmp_type = (uint8_t)ntohs(match->flow.tp_src);
icmp_spec.hdr.icmp_code = (uint8_t)ntohs(match->flow.tp_dst);