From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wenzhuo Lu Subject: [PATCH 1/3] net/avf/base: add spinlock functions Date: Thu, 11 Jan 2018 14:52:35 +0800 Message-ID: <1515653557-63430-2-git-send-email-wenzhuo.lu@intel.com> References: <1515653557-63430-1-git-send-email-wenzhuo.lu@intel.com> Cc: dev@dpdk.org, Wenzhuo Lu To: ferruh.yigit@intel.com Return-path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 4F9FC1B1E1 for ; Thu, 11 Jan 2018 07:50:41 +0100 (CET) In-Reply-To: <1515653557-63430-1-git-send-email-wenzhuo.lu@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Move the spinlock functions to the base code, and make them inline. This patch is for next-net and want to be squashed to the commit in fixes tag. Fixes: 8267939627e7 ("net/avf/base: add base code for avf PMD") Signed-off-by: Wenzhuo Lu --- drivers/net/avf/base/avf_osdep.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/drivers/net/avf/base/avf_osdep.h b/drivers/net/avf/base/avf_osdep.h index 2f46bb2..9ef4596 100644 --- a/drivers/net/avf/base/avf_osdep.h +++ b/drivers/net/avf/base/avf_osdep.h @@ -156,6 +156,29 @@ struct avf_spinlock { #define avf_allocate_virt_mem(h, m, s) avf_allocate_virt_mem_d(h, m, s) #define avf_free_virt_mem(h, m) avf_free_virt_mem_d(h, m) +static inline void +avf_init_spinlock_d(struct avf_spinlock *sp) +{ + rte_spinlock_init(&sp->spinlock); +} + +static inline void +avf_acquire_spinlock_d(struct avf_spinlock *sp) +{ + rte_spinlock_lock(&sp->spinlock); +} + +static inline void +avf_release_spinlock_d(struct avf_spinlock *sp) +{ + rte_spinlock_unlock(&sp->spinlock); +} + +static inline void +avf_destroy_spinlock_d(__rte_unused struct avf_spinlock *sp) +{ +} + #define avf_init_spinlock(_sp) avf_init_spinlock_d(_sp) #define avf_acquire_spinlock(_sp) avf_acquire_spinlock_d(_sp) #define avf_release_spinlock(_sp) avf_release_spinlock_d(_sp) -- 1.9.3