Le 16/12/2016 à 20:02, Ferruh Yigit a écrit :
+#ifdef RTE_LIBRTE_IXGBE_PMD
+       if (strstr(dev_info.driver_name, "ixgbe") != NULL)
+               ret = rte_pmd_ixgbe_set_vf_vlan_filter(res->port_id,
+                               res->vlan_id, res->vf_mask, is_add);
+#endif
+#ifdef RTE_LIBRTE_I40E_PMD
+       if (strstr(dev_info.driver_name, "i40e") != NULL)
+               ret = rte_pmd_i40e_set_vf_vlan_filter(res->port_id,
+                               res->vlan_id, res->vf_mask, is_add);
+#endif

That's exactly what we need to avoid, it won't scale to many PMDs.

Reply via email to