On 12/16/2016 7:02 PM, Ferruh Yigit wrote: > From: Qi Zhang <qi.z.zh...@intel.com> > > This patch add support to get/clear VF statistics > from PF side. > Two APIs are added: > rte_pmd_i40e_get_vf_stats. > rte_pmd_i40e_reset_vf_stats. > > Signed-off-by: Qi Zhang <qi.z.zh...@intel.com> > ---
<...> > diff --git a/drivers/net/i40e/rte_pmd_i40e_version.map > b/drivers/net/i40e/rte_pmd_i40e_version.map > index 8ac1bc8..7a5d211 100644 > --- a/drivers/net/i40e/rte_pmd_i40e_version.map > +++ b/drivers/net/i40e/rte_pmd_i40e_version.map > @@ -6,7 +6,9 @@ DPDK_2.0 { > DPDK_17.02 { > global: > > + rte_pmd_i40e_get_vf_stats; > rte_pmd_i40e_ping_vfs; > + rte_pmd_i40e_reset_vf_stats; > rte_pmd_i40e_set_tx_loopback; > rte_pmd_i40e_set_vf_broadcast; > rte_pmd_i40e_set_vf_mac_addr; Hi Wenzhuo, Mark, I think this is the list of all APIs added with this patchset. Just a question, what do you think following a logic in API naming as: <name_space>_<object>_<action> ? So API names become: rte_pmd_i40e_tx_loopback_set; rte_pmd_i40e_vf_broadcast_set; rte_pmd_i40e_vf_mac_addr_set; rte_pmd_i40e_vfs_ping; rte_pmd_i40e_vf_stats_get; rte_pmd_i40e_vf_stats_reset; After above rename, rte_pmd_i40e_tx_loopback_set() is not giving a hint that this is something related to the PF controlling VF, perhaps we can rename the API ? Also rte_pmd_i40e_vfs_ping() can become rte_pmd_i40e_vf_ping_all() to be more consistent about _vf_ usage. Overall, they can be something like: rte_pmd_i40e_vf_broadcast_set; rte_pmd_i40e_vf_mac_addr_set; rte_pmd_i40e_vf_ping_all; rte_pmd_i40e_vf_stats_get; rte_pmd_i40e_vf_stats_reset; rte_pmd_i40e_vf_tx_loopback_set; What do you think? >