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 46F652FDD for ; Tue, 4 Apr 2017 17:15:57 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1491318958; x=1522854958; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=166XApD2k1vg8YYhtpff46PyIoCke7DKVcZersbfaI8=; b=UnjMC1q8Kd3x40qfGA4cFX9W94Em/4N4tislvGXlTFfoQI3IzXYaXzT0 gGbftw1wtngn0Ylrf9zAlWOmGQT/gw==; Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Apr 2017 08:15:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,275,1486454400"; d="scan'208";a="73452275" Received: from qzhan15-z170x-ud5.sh.intel.com ([10.239.66.54]) by orsmga004.jf.intel.com with ESMTP; 04 Apr 2017 08:15:37 -0700 From: Qi Zhang To: thomas.monjalon@6wind.com Cc: dev@dpdk.org, Qi Zhang Date: Wed, 5 Apr 2017 07:09:05 +0800 Message-Id: <20170404230908.15145-1-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20170404230459.15006-1-qi.z.zhang@intel.com> References: <20170404230459.15006-1-qi.z.zhang@intel.com> Subject: [dpdk-dev] [PATCH v6 0/3] clean up interrupt handle 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: , X-List-Received-Date: Tue, 04 Apr 2017 15:15:58 -0000 It seems its not necessary to register an intr_handle for interrupt callback function. "void* cb_arg" shows enough when be used to pass the object that contain the information be required to handle the interrupt event( A typical way which is implemented by almost all driver is by passing a rte_ethdev instance). The patch change the prototype of rte_intr_callback_fn by removing the uncessary intr_handle paramter. v6: - Sync with latest test code. v5: - Update mlx4 driver which is missed in previous version. v4: - Update mlx5 driver which is missed in v1, v2, v3. - Add back patch 1 of v2 to make this complete though it already be applied. - Remove patch 3 which is not necessary with latest master. v3: - Update bnx2x driver which is missed in v1,v2 v2: - Seperate patch 1 in v1 into 2 patches. - Correct some commit log. Qi Zhang (3): vfio: keep interrupt source read only eal: clean up interrupt handle test/test: update test code drivers/net/bnx2x/bnx2x_ethdev.c | 5 ++-- drivers/net/bnxt/bnxt_irq.c | 3 +- drivers/net/e1000/em_ethdev.c | 8 ++---- drivers/net/e1000/igb_ethdev.c | 15 ++++------ drivers/net/enic/enic_main.c | 3 +- drivers/net/fm10k/fm10k_ethdev.c | 12 +++----- drivers/net/i40e/i40e_ethdev.c | 8 ++---- drivers/net/i40e/i40e_ethdev_vf.c | 5 ++-- drivers/net/ixgbe/ixgbe_ethdev.c | 14 ++++----- drivers/net/mlx4/mlx4.c | 5 ++-- drivers/net/mlx5/mlx5.h | 2 +- drivers/net/mlx5/mlx5_ethdev.c | 3 +- drivers/net/nfp/nfp_net.c | 6 ++-- drivers/net/qede/qede_ethdev.c | 4 +-- drivers/net/sfc/sfc_intr.c | 10 ++++--- drivers/net/virtio/virtio_ethdev.c | 5 ++-- lib/librte_eal/common/include/rte_interrupts.h | 3 +- lib/librte_eal/linuxapp/eal/eal_alarm.c | 5 ++-- lib/librte_eal/linuxapp/eal/eal_interrupts.c | 39 ++++---------------------- test/test/test_interrupts.c | 23 +++++++-------- 20 files changed, 64 insertions(+), 114 deletions(-) -- 2.9.3