From patchwork Thu Sep 27 09:21:53 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Li, Xiaoyun" X-Patchwork-Id: 45487 Return-Path: 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 ; 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 To: dev@dpdk.org, qi.z.zhang@intel.com, beilei.xing@intel.com, wenzhuo.lu@intel.com, jingjing.wu@intel.com Cc: Xiaoyun Li 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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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(-) Acked-by: Qi Zhang