From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1134-211.mail.aliyun.com (out1134-211.mail.aliyun.com [42.120.134.211]) by dpdk.org (Postfix) with ESMTP id A977BB75F for ; Sat, 21 Feb 2015 03:57:04 +0100 (CET) X-Alimail-AntiSpam: AC=CONTINUE; BC=0.1473304|-1; FP=0|0|0|0|0|-1|-1|-1; HT=r41g03005; MF=jun.xiao@cloudnetengine.com; PH=DS; RN=2; RT=2; SR=0; Received: from gmail.com(mailfrom:jun.xiao@cloudnetengine.com ip:113.45.198.133) by smtp.aliyun-inc.com(10.147.34.66); Sat, 21 Feb 2015 10:56:46 +0800 Date: Sat, 21 Feb 2015 10:56:44 +0800 From: Jun Xiao To: Zhou Danny Message-ID: <20150221025644.GA61778@gmail.com> References: <1424353698-29837-1-git-send-email-danny.zhou@intel.com> <1424353698-29837-5-git-send-email-danny.zhou@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1424353698-29837-5-git-send-email-danny.zhou@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v4 4/5] eal: add per rx queue interrupt handling based on VFIO 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: Sat, 21 Feb 2015 02:57:05 -0000 On 02/19, Zhou Danny wrote: > v4 changes: > - Adjust position of new-added structure fields > > v3 changes: > - Fix review comments > > v2 changes: > - Fix compilation issue for a missed header file > - Bug fix: free unreleased resources on the exception path before return > - Consolidate coding style related review comments > > This patch does below: > - Create multiple VFIO eventfd for rx queues. > - Handle per rx queue interrupt. > - Eliminate unnecessary suspended DPDK polling thread wakeup mechanism > for rx interrupt by allowing polling thread epoll_wait rx queue > interrupt notification. > > Signed-off-by: Danny Zhou > Tested-by: Yong Liu > --- > lib/librte_eal/common/include/rte_eal.h | 12 ++ > lib/librte_eal/linuxapp/eal/Makefile | 1 + > lib/librte_eal/linuxapp/eal/eal_interrupts.c | 190 ++++++++++++++++----- > lib/librte_eal/linuxapp/eal/eal_pci_vfio.c | 12 +- > .../linuxapp/eal/include/exec-env/rte_interrupts.h | 4 + Hi Danny, Could you rebase the patch to your commit 4a499c64959, otherwise rte_interrupts.h cannot be applied. Thanks, Jun