net/af_packet: run on kernel without qdisc bypass support
[dpdk.git] / drivers / net / i40e / i40e_vf_representor.c
index 45a15d3..0481b55 100644 (file)
@@ -7,6 +7,7 @@
 #include <rte_pci.h>
 #include <rte_malloc.h>
 
+#include "ethdev_driver.h"
 #include "base/i40e_type.h"
 #include "base/virtchnl.h"
 #include "i40e_ethdev.h"
@@ -18,15 +19,18 @@ i40e_vf_representor_link_update(struct rte_eth_dev *ethdev,
        int wait_to_complete)
 {
        struct i40e_vf_representor *representor = ethdev->data->dev_private;
+       struct rte_eth_dev *dev =
+               &rte_eth_devices[representor->adapter->pf.dev_data->port_id];
 
-       return i40e_dev_link_update(representor->adapter->eth_dev,
-               wait_to_complete);
+       return i40e_dev_link_update(dev, wait_to_complete);
 }
-static void
+static int
 i40e_vf_representor_dev_infos_get(struct rte_eth_dev *ethdev,
        struct rte_eth_dev_info *dev_info)
 {
        struct i40e_vf_representor *representor = ethdev->data->dev_private;
+       struct rte_eth_dev_data *pf_dev_data =
+               representor->adapter->pf.dev_data;
 
        /* get dev info for the vdev */
        dev_info->device = ethdev->device;
@@ -46,7 +50,8 @@ i40e_vf_representor_dev_infos_get(struct rte_eth_dev *ethdev,
                DEV_RX_OFFLOAD_QINQ_STRIP |
                DEV_RX_OFFLOAD_IPV4_CKSUM |
                DEV_RX_OFFLOAD_UDP_CKSUM |
-               DEV_RX_OFFLOAD_TCP_CKSUM;
+               DEV_RX_OFFLOAD_TCP_CKSUM |
+               DEV_RX_OFFLOAD_VLAN_FILTER;
        dev_info->tx_offload_capa =
                DEV_TX_OFFLOAD_MULTI_SEGS  |
                DEV_TX_OFFLOAD_VLAN_INSERT |
@@ -97,9 +102,11 @@ i40e_vf_representor_dev_infos_get(struct rte_eth_dev *ethdev,
        };
 
        dev_info->switch_info.name =
-               representor->adapter->eth_dev->device->name;
+               rte_eth_devices[pf_dev_data->port_id].device->name;
        dev_info->switch_info.domain_id = representor->switch_domain_id;
        dev_info->switch_info.port_id = representor->vf_id;
+
+       return 0;
 }
 
 static int
@@ -114,9 +121,10 @@ i40e_vf_representor_dev_start(__rte_unused struct rte_eth_dev *dev)
        return 0;
 }
 
-static void
+static int
 i40e_vf_representor_dev_stop(__rte_unused struct rte_eth_dev *dev)
 {
+       return 0;
 }
 
 static int
@@ -208,7 +216,7 @@ i40e_vf_representor_stats_get(struct rte_eth_dev *ethdev,
        int ret;
 
        ret = rte_pmd_i40e_get_vf_native_stats(
-               representor->adapter->eth_dev->data->port_id,
+               representor->adapter->pf.dev_data->port_id,
                representor->vf_id, &native_stats);
        if (ret == 0) {
                i40evf_stat_update_48(
@@ -262,53 +270,53 @@ i40e_vf_representor_stats_get(struct rte_eth_dev *ethdev,
        return ret;
 }
 
-static void
+static int
 i40e_vf_representor_stats_reset(struct rte_eth_dev *ethdev)
 {
        struct i40e_vf_representor *representor = ethdev->data->dev_private;
 
-       rte_pmd_i40e_get_vf_native_stats(
-               representor->adapter->eth_dev->data->port_id,
+       return rte_pmd_i40e_get_vf_native_stats(
+               representor->adapter->pf.dev_data->port_id,
                representor->vf_id, &representor->stats_offset);
 }
 
-static void
+static int
 i40e_vf_representor_promiscuous_enable(struct rte_eth_dev *ethdev)
 {
        struct i40e_vf_representor *representor = ethdev->data->dev_private;
 
-       rte_pmd_i40e_set_vf_unicast_promisc(
-               representor->adapter->eth_dev->data->port_id,
+       return rte_pmd_i40e_set_vf_unicast_promisc(
+               representor->adapter->pf.dev_data->port_id,
                representor->vf_id, 1);
 }
 
-static void
+static int
 i40e_vf_representor_promiscuous_disable(struct rte_eth_dev *ethdev)
 {
        struct i40e_vf_representor *representor = ethdev->data->dev_private;
 
-       rte_pmd_i40e_set_vf_unicast_promisc(
-               representor->adapter->eth_dev->data->port_id,
+       return rte_pmd_i40e_set_vf_unicast_promisc(
+               representor->adapter->pf.dev_data->port_id,
                representor->vf_id, 0);
 }
 
-static void
+static int
 i40e_vf_representor_allmulticast_enable(struct rte_eth_dev *ethdev)
 {
        struct i40e_vf_representor *representor = ethdev->data->dev_private;
 
-       rte_pmd_i40e_set_vf_multicast_promisc(
-               representor->adapter->eth_dev->data->port_id,
+       return rte_pmd_i40e_set_vf_multicast_promisc(
+               representor->adapter->pf.dev_data->port_id,
                representor->vf_id,  1);
 }
 
-static void
+static int
 i40e_vf_representor_allmulticast_disable(struct rte_eth_dev *ethdev)
 {
        struct i40e_vf_representor *representor = ethdev->data->dev_private;
 
-       rte_pmd_i40e_set_vf_multicast_promisc(
-               representor->adapter->eth_dev->data->port_id,
+       return rte_pmd_i40e_set_vf_multicast_promisc(
+               representor->adapter->pf.dev_data->port_id,
                representor->vf_id,  0);
 }
 
@@ -318,18 +326,18 @@ i40e_vf_representor_mac_addr_remove(struct rte_eth_dev *ethdev, uint32_t index)
        struct i40e_vf_representor *representor = ethdev->data->dev_private;
 
        rte_pmd_i40e_remove_vf_mac_addr(
-               representor->adapter->eth_dev->data->port_id,
+               representor->adapter->pf.dev_data->port_id,
                representor->vf_id, &ethdev->data->mac_addrs[index]);
 }
 
 static int
 i40e_vf_representor_mac_addr_set(struct rte_eth_dev *ethdev,
-               struct ether_addr *mac_addr)
+               struct rte_ether_addr *mac_addr)
 {
        struct i40e_vf_representor *representor = ethdev->data->dev_private;
 
        return rte_pmd_i40e_set_vf_mac_addr(
-               representor->adapter->eth_dev->data->port_id,
+               representor->adapter->pf.dev_data->port_id,
                representor->vf_id, mac_addr);
 }
 
@@ -341,7 +349,7 @@ i40e_vf_representor_vlan_filter_set(struct rte_eth_dev *ethdev,
        uint64_t vf_mask = 1ULL << representor->vf_id;
 
        return rte_pmd_i40e_set_vf_vlan_filter(
-               representor->adapter->eth_dev->data->port_id,
+               representor->adapter->pf.dev_data->port_id,
                vlan_id, vf_mask, on);
 }
 
@@ -355,7 +363,7 @@ i40e_vf_representor_vlan_offload_set(struct rte_eth_dev *ethdev, int mask)
        struct i40e_pf *pf;
        uint32_t vfid;
 
-       pdev = representor->adapter->eth_dev;
+       pdev = &rte_eth_devices[representor->adapter->pf.dev_data->port_id];
        vfid = representor->vf_id;
 
        if (!is_i40e_supported(pdev)) {
@@ -405,7 +413,7 @@ i40e_vf_representor_vlan_strip_queue_set(struct rte_eth_dev *ethdev,
        struct i40e_vf_representor *representor = ethdev->data->dev_private;
 
        rte_pmd_i40e_set_vf_vlan_stripq(
-               representor->adapter->eth_dev->data->port_id,
+               representor->adapter->pf.dev_data->port_id,
                representor->vf_id, on);
 }
 
@@ -416,7 +424,7 @@ i40e_vf_representor_vlan_pvid_set(struct rte_eth_dev *ethdev, uint16_t vlan_id,
        struct i40e_vf_representor *representor = ethdev->data->dev_private;
 
        return rte_pmd_i40e_set_vf_vlan_insert(
-               representor->adapter->eth_dev->data->port_id,
+               representor->adapter->pf.dev_data->port_id,
                representor->vf_id, vlan_id);
 }
 
@@ -482,7 +490,7 @@ i40e_vf_representor_init(struct rte_eth_dev *ethdev, void *init_params)
                ((struct i40e_vf_representor *)init_params)->adapter;
 
        pf = I40E_DEV_PRIVATE_TO_PF(
-               representor->adapter->eth_dev->data->dev_private);
+               representor->adapter->pf.dev_data->dev_private);
 
        if (representor->vf_id >= pf->vf_num)
                return -ENODEV;
@@ -503,7 +511,8 @@ i40e_vf_representor_init(struct rte_eth_dev *ethdev, void *init_params)
                return -ENODEV;
        }
 
-       ethdev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR;
+       ethdev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR |
+                                       RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS;
        ethdev->data->representor_id = representor->vf_id;
 
        /* Setting the number queues allocated to the VF */
@@ -513,7 +522,7 @@ i40e_vf_representor_init(struct rte_eth_dev *ethdev, void *init_params)
        ethdev->data->mac_addrs = &vf->mac_addr;
 
        /* Link state. Inherited from PF */
-       link = &representor->adapter->eth_dev->data->dev_link;
+       link = &representor->adapter->pf.dev_data->dev_link;
 
        ethdev->data->dev_link.link_speed = link->link_speed;
        ethdev->data->dev_link.link_duplex = link->link_duplex;