i40e: support NVGRE in Rx tunnel filtering
authorJijiang Liu <jijiang.liu@intel.com>
Fri, 20 Feb 2015 17:01:45 +0000 (17:01 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 23 Feb 2015 15:29:58 +0000 (16:29 +0100)
The filter types supported are listed below for NVGRE packet:
   1. Inner MAC and Inner VLAN ID.
   2. Inner MAC address, inner VLAN ID and tenant ID.
   3. Inner MAC and tenant ID.
   4. Inner MAC address.
   5. Outer MAC address, tenant ID and inner MAC address.

Signed-off-by: Jijiang Liu <jijiang.liu@intel.com>
Signed-off-by: Declan Doherty <declan.doherty@intel.com>
lib/librte_pmd_i40e/i40e_ethdev.c

index 415ba8d..bb3223b 100644 (file)
@@ -4811,6 +4811,9 @@ i40e_dev_tunnel_filter_set(struct i40e_pf *pf,
        case RTE_TUNNEL_TYPE_VXLAN:
                tun_type = I40E_AQC_ADD_CLOUD_TNL_TYPE_XVLAN;
                break;
+       case RTE_TUNNEL_TYPE_NVGRE:
+               tun_type = I40E_AQC_ADD_CLOUD_TNL_TYPE_NVGRE_OMAC;
+               break;
        default:
                /* Other tunnel types is not supported. */
                PMD_DRV_LOG(ERR, "tunnel type is not supported.");