From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Nov 2017 23:48:11 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,425,1505804400"; d="scan'208";a="3799572" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.255.228.253]) ([10.255.228.253]) by FMSMGA003.fm.intel.com with ESMTP; 19 Nov 2017 23:48:10 -0800 To: Mohammad Abdul Awal , dev@dpdk.org Cc: Remy Horton , Declan Doherty References: <1510929733-7225-1-git-send-email-mohammad.abdul.awal@intel.com> <1510929733-7225-5-git-send-email-mohammad.abdul.awal@intel.com> From: Ferruh Yigit Message-ID: Date: Sun, 19 Nov 2017 23:48:10 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: <1510929733-7225-5-git-send-email-mohammad.abdul.awal@intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2 5/6] net/i40e: Enable port representor PMD and broker for fortville PMD driver X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Nov 2017 07:48:12 -0000 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?