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 D9C6C378E for ; Mon, 26 Oct 2015 04:47:53 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 25 Oct 2015 20:47:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,199,1444719600"; d="scan'208";a="819290698" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 25 Oct 2015 20:47:52 -0700 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id t9Q3lopj006876; Mon, 26 Oct 2015 11:47:50 +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 t9Q3lliD014290; Mon, 26 Oct 2015 11:47:49 +0800 Received: (from heshaope@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id t9Q3lk4V014286; Mon, 26 Oct 2015 11:47:46 +0800 From: Shaopeng He To: dev@dpdk.org Date: Mon, 26 Oct 2015 11:47:38 +0800 Message-Id: <1445831265-14256-1-git-send-email-shaopeng.he@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1443159425-32502-1-git-send-email-shaopeng.he@intel.com> References: <1443159425-32502-1-git-send-email-shaopeng.he@intel.com> Subject: [dpdk-dev] [PATCH v2 0/7] interrupt mode for fm10k 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, 26 Oct 2015 03:47:54 -0000 This patch series adds interrupt mode support for fm10k, contains four major parts: 1. implement rx_descriptor_done function in fm10k 2. make sure default VID available in dev_init in fm10k 3. fix a memory leak for non-ip packet in l3fwd-power 4. add rx interrupt support in fm10k PF and VF The patch set is developed based on one previous patch set "[PATCH v1 00/11] interrupt mode for i40e" http://www.dpdk.org/ml/archives/dev/2015-September/023903.html Shaopeng He (7): fm10k: implement rx_descriptor_done function fm10k: setup rx queue interrupts for PF and VF fm10k: remove rx queue interrupts when dev stops fm10k: add rx queue interrupt en/dis functions fm10k: make sure default VID available in dev_init l3fwd-power: fix a memory leak for non-ip packet doc: release note update for fm10k intr mode doc/guides/rel_notes/release_2_2.rst | 2 + drivers/net/fm10k/fm10k.h | 3 + drivers/net/fm10k/fm10k_ethdev.c | 164 +++++++++++++++++++++++++++++++++-- drivers/net/fm10k/fm10k_rxtx.c | 25 ++++++ examples/l3fwd-power/main.c | 3 +- 5 files changed, 189 insertions(+), 8 deletions(-) -- 1.9.3