X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=sidebyside;f=drivers%2Fnet%2Fi40e%2Fi40e_flow.c;h=f163ce5643ba08304e5c6cb8834dd4b177549359;hb=adce1f86f8d25fc10e9ac32fd59fa0bedce608ad;hp=c6e4d877c7bc82b70d7de16bea4124c23dfc65f5;hpb=47c6782344b7cb606b8a6700747438504ddb2ddf;p=dpdk.git diff --git a/drivers/net/i40e/i40e_flow.c b/drivers/net/i40e/i40e_flow.c index c6e4d877c7..f163ce5643 100644 --- a/drivers/net/i40e/i40e_flow.c +++ b/drivers/net/i40e/i40e_flow.c @@ -1309,7 +1309,7 @@ i40e_flow_parse_vxlan_pattern(const struct rte_flow_item *pattern, case RTE_FLOW_ITEM_TYPE_IPV4: filter->ip_type = RTE_TUNNEL_IPTYPE_IPV4; /* IPv4 is used to describe protocol, - * spec amd mask should be NULL. + * spec and mask should be NULL. */ if (item->spec || item->mask) { rte_flow_error_set(error, EINVAL, @@ -1322,7 +1322,7 @@ i40e_flow_parse_vxlan_pattern(const struct rte_flow_item *pattern, case RTE_FLOW_ITEM_TYPE_IPV6: filter->ip_type = RTE_TUNNEL_IPTYPE_IPV6; /* IPv6 is used to describe protocol, - * spec amd mask should be NULL. + * spec and mask should be NULL. */ if (item->spec || item->mask) { rte_flow_error_set(error, EINVAL, @@ -1334,7 +1334,7 @@ i40e_flow_parse_vxlan_pattern(const struct rte_flow_item *pattern, break; case RTE_FLOW_ITEM_TYPE_UDP: /* UDP is used to describe protocol, - * spec amd mask should be NULL. + * spec and mask should be NULL. */ if (item->spec || item->mask) { rte_flow_error_set(error, EINVAL,