From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id CDBA72BF7 for ; Mon, 6 Jun 2016 07:48:18 +0200 (CEST) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga103.fm.intel.com with ESMTP; 05 Jun 2016 22:48:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,425,1459839600"; d="scan'208";a="116669468" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga004.fm.intel.com with ESMTP; 05 Jun 2016 22:48:17 -0700 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id u565mGOa030466 for ; Mon, 6 Jun 2016 13:48:16 +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 u565mDuh028686 for ; Mon, 6 Jun 2016 13:48:15 +0800 Received: (from wenzhuol@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id u565mDO1028682 for dev@dpdk.org; Mon, 6 Jun 2016 13:48:13 +0800 From: Wenzhuo Lu To: dev@dpdk.org Date: Mon, 6 Jun 2016 13:48:12 +0800 Message-Id: <1465192093-28651-1-git-send-email-wenzhuo.lu@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH] an example for VF link reset X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jun 2016 05:48:19 -0000 Add a new example to show how to handle the reset event on VF when PF link down/up. PS: This patch set is base on the patch set *support reset of VF link*. Wenzhuo Lu (1): examples: add a new example for link reset MAINTAINERS | 4 + doc/guides/sample_app_ug/link_reset.rst | 177 ++++++++ examples/link_reset/Makefile | 50 +++ examples/link_reset/main.c | 769 ++++++++++++++++++++++++++++++++ 4 files changed, 1000 insertions(+) create mode 100644 doc/guides/sample_app_ug/link_reset.rst create mode 100644 examples/link_reset/Makefile create mode 100644 examples/link_reset/main.c -- 1.9.3