From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 14505A0548; Fri, 2 Apr 2021 03:37:24 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8CC5540F35; Fri, 2 Apr 2021 03:37:23 +0200 (CEST) Received: from mail-pg1-f174.google.com (mail-pg1-f174.google.com [209.85.215.174]) by mails.dpdk.org (Postfix) with ESMTP id 057A640150 for ; Fri, 2 Apr 2021 03:37:21 +0200 (CEST) Received: by mail-pg1-f174.google.com with SMTP id f29so236303pgm.8 for ; Thu, 01 Apr 2021 18:37:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=0L3LaUsLZdOib6dug9fHgle8MmiK+9VHeqKFSr6D2Pk=; b=0HC8s2UPqq5GXb8wXXopSezr4w+DUwoie+qmv70XyxosnSh+260pxynKcK8qTrcTy+ lqbbqJNzLb0o7JMX5twWrhccf/baRwa7VEk1AsY4ysjt2IZgys8fGEWnh/Kx5/SNmstK sQsite78dmcL7GgkJPi/VXeZEacUXYrekk9JSSnoflSNMUdz8i140SaiHPaR7fL1A+YR IM1enV65i4XPVDZ13P/KYs39745JC7KlucocrbtAY1yXqGO0IGZ+yA+RSnDTpohAeT/Q 3DA3IxHgPUAyYhsxX6dDpkivBj7ecvQi6wVwdsDhrht9vGSLvdqn9JO2n0ynstzSs8KJ s0Vg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=0L3LaUsLZdOib6dug9fHgle8MmiK+9VHeqKFSr6D2Pk=; b=pMGswnNFdkbPl1yh9HEwHvkcpm8YY05fWOdJNJQbC0QIUcAl3cyUP7JTcUt9lFDQ6p 9dEpSBNYPP1+CdzIGjOPF3Ao469YOr+3F9FToE1bZSeTUmHMx053nMK2uX9POc69z2FS jxbG6sGHtD5uQdeZnpOOLjeYZJDGBsZrrIjcskWYj6IcCq/ltErfg5vthvRjRrtrThSf MxNv5K7hYLIZJqFk4E6Hj0VUACdhAUwiDssueCdkCoiT1k7XSp/ZzUPQIoULzTRfKJAq D+7JhQXnkMFPUrQK2mRH79g50ldeK/MqNUB0R/yTTPV6EUiBPMgzxZRyMERxuS2yxOXd RWFQ== X-Gm-Message-State: AOAM530+IBYEYd9cR7VPiQOanlqMVCUWA5Jt6x/oauDbHSY2yih6JKhn 5rb3M6welClngX2sjUmH1jbJLw== X-Google-Smtp-Source: ABdhPJzVY26V2yeYrUnD8Cv9htdEZPpe+mcqfV6ANDoVM3GmPv1Zf26kGOEU6RH7g5QUQio3Medf3A== X-Received: by 2002:a62:7815:0:b029:22d:f8dd:7701 with SMTP id t21-20020a6278150000b029022df8dd7701mr9750472pfc.53.1617327441002; Thu, 01 Apr 2021 18:37:21 -0700 (PDT) Received: from hermes.local (76-14-218-44.or.wavecable.com. [76.14.218.44]) by smtp.gmail.com with ESMTPSA id b10sm6666045pgm.76.2021.04.01.18.37.20 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 01 Apr 2021 18:37:20 -0700 (PDT) Date: Thu, 1 Apr 2021 18:37:12 -0700 From: Stephen Hemminger To: Honnappa Nagarahalli Cc: "dev@dpdk.org" , nd Message-ID: <20210401183712.0942fcf7@hermes.local> In-Reply-To: References: <20210212013838.312623-1-sthemmin@microsoft.com> <20210330050047.34175-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v4] pflock: add phase-fair reader writer locks X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" On Wed, 31 Mar 2021 04:19:14 +0000 Honnappa Nagarahalli wrote: > > +__rte_experimental > > +static inline void > Minor, this API does not need to be inline. Unfortunately, it has to be inline otherwise Gcc warns about unused static function in every file that doesn't use it.