From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH v2 5/6] net/i40e: Enable port representor PMD and broker for fortville PMD driver Date: Sun, 19 Nov 2017 23:48:10 -0800 Message-ID: References: <1510929733-7225-1-git-send-email-mohammad.abdul.awal@intel.com> <1510929733-7225-5-git-send-email-mohammad.abdul.awal@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: Remy Horton , Declan Doherty To: Mohammad Abdul Awal , dev@dpdk.org Return-path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 3C8E92BEF for ; Mon, 20 Nov 2017 08:48:11 +0100 (CET) In-Reply-To: <1510929733-7225-5-git-send-email-mohammad.abdul.awal@intel.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 11/17/2017 6:42 AM, Mohammad Abdul Awal wrote: > +struct eth_dev_ops i40e_representor_dev_ops = { > + .link_update = i40e_representor_link_update, > + .dev_infos_get = i40e_representor_dev_infos_get, > + > + .stats_get = i40e_representor_stats_get, > + .stats_reset = i40e_representor_stats_reset, > + > + .promiscuous_enable = i40e_representor_promiscuous_enable, > + .promiscuous_disable = i40e_representor_promiscuous_disable, > + > + .allmulticast_enable = i40e_representor_allmulticast_enable, > + .allmulticast_disable = i40e_representor_allmulticast_disable, > + > + .mac_addr_remove = i40e_representor_mac_addr_remove, > + .mac_addr_set = i40e_representor_mac_addr_set, > + > + .vlan_filter_set = i40e_representor_vlan_filter_set, > + .vlan_offload_set = i40e_representor_vlan_offload_set, > + .vlan_strip_queue_set = i40e_representor_vlan_strip_queue_set, > + .vlan_pvid_set = i40e_representor_vlan_pvid_set > +}; Will we able to get rid of VF control related PMD specific APIs when port representation enabled?