From mboxrd@z Thu Jan 1 00:00:00 1970 From: Zhe Tao Subject: Re: [PATCH v3 0/2] i40evf: pf reset event report Date: Wed, 9 Mar 2016 11:08:09 +0800 Message-ID: <20160309030809.GA79211@intel.com> References: <1453859378-23912-1-git-send-email-jingjing.wu@intel.com> <1456469514-9103-1-git-send-email-jingjing.wu@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org To: Jingjing Wu Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 8258E2B9F for ; Wed, 9 Mar 2016 12:22:32 +0100 (CET) Content-Disposition: inline In-Reply-To: <1456469514-9103-1-git-send-email-jingjing.wu@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Fri, Feb 26, 2016 at 02:51:52PM +0800, Jingjing Wu wrote: > v3 changes: > - commit log doc rewording. > - rebase on latest dpdk-next-net/rel_16_04 branch. > - remove few useless line > - adjust interval and increase times for waiting pf msg > > v2 changes: > - remove the change on vf reset status checking > - add pf event report support in release note > > When Linux PF and DPDK VF are used for i40e PMD, In case of PF reset, > interrupt request will go via adminq event, VF need be informed, a callback > mechanism is introduced by VF. This will allow VF to invoke callback when > reset happens. > Users can register a callback for this interrupt event like: > rte_eth_dev_callback_register(portid, > RTE_ETH_EVENT_INTR_RESET, > reset_event_callback, > arg); > > Jingjing Wu (2): > i40evf: allocate virtchnl cmd buffer for each vf > i40evf: support to report pf reset event > > doc/guides/rel_notes/release_16_04.rst | 1 + > drivers/net/i40e/i40e_ethdev.h | 2 + > drivers/net/i40e/i40e_ethdev_vf.c | 420 +++++++++++++++++++++++---------- > lib/librte_ether/rte_ethdev.h | 1 + > 4 files changed, 301 insertions(+), 123 deletions(-) > > -- > 2.4.0 Acked-by: Zhe Tao