From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <wenzhuol@shecgisg004.sh.intel.com>
Received: from mga01.intel.com (mga01.intel.com [192.55.52.88])
 by dpdk.org (Postfix) with ESMTP id 7771AADA4
 for <dev@dpdk.org>; Wed, 15 Jun 2016 05:03:44 +0200 (CEST)
Received: from orsmga002.jf.intel.com ([10.7.209.21])
 by fmsmga101.fm.intel.com with ESMTP; 14 Jun 2016 20:03:43 -0700
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.26,474,1459839600"; d="scan'208";a="997822616"
Received: from shvmail01.sh.intel.com ([10.239.29.42])
 by orsmga002.jf.intel.com with ESMTP; 14 Jun 2016 20:03:41 -0700
Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com
 [10.239.29.89])
 by shvmail01.sh.intel.com with ESMTP id u5F33baS022797;
 Wed, 15 Jun 2016 11:03:37 +0800
Received: from shecgisg004.sh.intel.com (localhost [127.0.0.1])
 by shecgisg004.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id
 u5F33Ybp016592; Wed, 15 Jun 2016 11:03:36 +0800
Received: (from wenzhuol@localhost)
 by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id u5F33YR6016588;
 Wed, 15 Jun 2016 11:03:34 +0800
From: Wenzhuo Lu <wenzhuo.lu@intel.com>
To: dev@dpdk.org
Cc: konstantin.ananyev@intel.com, bruce.richardson@intel.com,
 jing.d.chen@intel.com, cunming.liang@intel.com, jingjing.wu@intel.com,
 helin.zhang@intel.com
Date: Wed, 15 Jun 2016 11:03:30 +0800
Message-Id: <1465959814-16557-1-git-send-email-wenzhuo.lu@intel.com>
X-Mailer: git-send-email 1.7.4.1
In-Reply-To: <1465191653-28408-1-git-send-email-wenzhuo.lu@intel.com>
References: <1465191653-28408-1-git-send-email-wenzhuo.lu@intel.com>
Subject: [dpdk-dev] [PATCH v5 0/4] support reset of VF link
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Wed, 15 Jun 2016 03:03:45 -0000

If the PF link is down and up, VF link will not work accordingly.
This patch set addes the support of VF link reset. So, when VF
receices the messges of physical link down/up. APP can reset the
VF link and let it recover.

PS: This patch set is splitted from a previous patch set,
*automatic link recovery on ixgbe/igb VF*, and it's base on the
patch set *support mailbox interruption on ixgbe/igb VF*.

Wenzhuo Lu (3):
  lib/librte_ether: support device reset
  ixgbe: implement device reset on VF
  igb: implement device reset on VF

Zhe Tao (1):
  i40e: implement device reset on VF

v1:
- Added the implementation for the VF reset functionality.
v2:
- Changed the i40e related operations during VF reset.
v3:
- Resent the patches because of the mail sent issue.
v4:
- Removed some VF reset emulation code.
v5:
- Removed all the code related with lock.

 doc/guides/rel_notes/release_16_07.rst | 13 ++++++
 drivers/net/e1000/igb_ethdev.c         | 59 ++++++++++++++++++++++++
 drivers/net/i40e/i40e_ethdev.h         |  4 ++
 drivers/net/i40e/i40e_ethdev_vf.c      | 83 ++++++++++++++++++++++++++++++++++
 drivers/net/i40e/i40e_rxtx.c           | 10 ++++
 drivers/net/i40e/i40e_rxtx.h           |  4 ++
 drivers/net/ixgbe/ixgbe_ethdev.c       | 64 +++++++++++++++++++++++++-
 drivers/net/ixgbe/ixgbe_ethdev.h       |  2 +-
 drivers/net/ixgbe/ixgbe_rxtx.c         | 12 +++--
 lib/librte_ether/rte_ethdev.c          | 17 +++++++
 lib/librte_ether/rte_ethdev.h          | 14 ++++++
 lib/librte_ether/rte_ether_version.map |  7 +++
 12 files changed, 284 insertions(+), 5 deletions(-)

-- 
1.9.3