Message ID | 1538040115-44176-1-git-send-email-xiaoyun.li@intel.com (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 36FA41B11E; Thu, 27 Sep 2018 11:38:52 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 7AF6C1B11A for <dev@dpdk.org>; Thu, 27 Sep 2018 11:38:50 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Sep 2018 02:38:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,310,1534834800"; d="scan'208";a="93725707" Received: from dpdk-xiaoyunl.sh.intel.com ([10.67.110.231]) by fmsmga001.fm.intel.com with ESMTP; 27 Sep 2018 02:38:14 -0700 From: Xiaoyun Li <xiaoyun.li@intel.com> To: dev@dpdk.org, qi.z.zhang@intel.com, beilei.xing@intel.com, wenzhuo.lu@intel.com, jingjing.wu@intel.com Cc: Xiaoyun Li <xiaoyun.li@intel.com> Date: Thu, 27 Sep 2018 05:21:53 -0400 Message-Id: <1538040115-44176-1-git-send-email-xiaoyun.li@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [PATCH 0/2] remove unnecessary call of rte intr enable X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> |
Series |
remove unnecessary call of rte intr enable
|
|
Message
Li, Xiaoyun
Sept. 27, 2018, 9:21 a.m. UTC
Since rte_intr_enable is called at init and start time. Remove it in interrupt_action function to avoid too many system calls. Xiaoyun Li (2): net/ixgbe: remove unnecessary call of rte intr enable net/i40e: remove unnecessary call of rte intr enable drivers/net/i40e/i40e_ethdev.c | 1 - drivers/net/ixgbe/ixgbe_ethdev.c | 9 +++------ 2 files changed, 3 insertions(+), 7 deletions(-)
Comments
> -----Original Message----- > From: Li, Xiaoyun > Sent: Thursday, September 27, 2018 5:22 PM > To: dev@dpdk.org; Zhang, Qi Z <qi.z.zhang@intel.com>; Xing, Beilei > <beilei.xing@intel.com>; Lu, Wenzhuo <wenzhuo.lu@intel.com>; Wu, Jingjing > <jingjing.wu@intel.com> > Cc: Li, Xiaoyun <xiaoyun.li@intel.com> > Subject: [PATCH 0/2] remove unnecessary call of rte intr enable > > Since rte_intr_enable is called at init and start time. Remove it in > interrupt_action function to avoid too many system calls. > > Xiaoyun Li (2): > net/ixgbe: remove unnecessary call of rte intr enable > net/i40e: remove unnecessary call of rte intr enable > > drivers/net/i40e/i40e_ethdev.c | 1 - > drivers/net/ixgbe/ixgbe_ethdev.c | 9 +++------ > 2 files changed, 3 insertions(+), 7 deletions(-) > > -- > 2.7.4 Acked-by: Qi Zhang <qi.z.zhang@intel.com> Applied to dpdk-next-net-intel. Thanks Qi