From patchwork Mon Aug 8 21:21:29 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tyler Retzlaff X-Patchwork-Id: 114725 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id AACB5A0540; Mon, 8 Aug 2022 23:21:38 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 57AF54014F; Mon, 8 Aug 2022 23:21:38 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id BD4B540141 for ; Mon, 8 Aug 2022 23:21:36 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 076D92109422; Mon, 8 Aug 2022 14:21:36 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 076D92109422 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1659993696; bh=KI778jRJqWq+1PcJtMMxSnEmBVQhLOweOO7tqsa/qOM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=dDLFO0Dc7FRWP92aOY0uR4KbiKrJ3YSwOqeMMg+Q9ehsEtOmtcqggPcCcI4b8CwE1 LkDR1cZbPSSIyDTgrjRGW8Vn4uuc3vfZJ2U71U3KsOeoi+LHk0Pi+P8QC0P3AC/2zk 6adYdee81EkifxiufVJBnDcqs0jr4jSnJ6FG93q0= From: Tyler Retzlaff To: dev@dpdk.org Cc: thomas@monjalon.net, anatoly.burakov@intel.com, ranjit.menon@intel.com, mb@smartsharesystems.com, Tyler Retzlaff Subject: [PATCH 0/3] cleanup bsf and fls inline function return types Date: Mon, 8 Aug 2022 14:21:29 -0700 Message-Id: <1659993692-17479-1-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1615418650-19513-1-git-send-email-roretzla@linux.microsoft.com> References: <1615418650-19513-1-git-send-email-roretzla@linux.microsoft.com> 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 The cleanup resulted from request to review [1] the following functions where there appeared to be inconsistency in return type or parameter type selections for the following inline functions. Since the original request some instances have been fixed so this series completes the outstanding return value type updates. [1] http://mails.dpdk.org/archives/dev/2021-March/201590.html Tyler Retzlaff (3): doc: announce cleanup of rte_{bsf, fls} inline functions type use eal: change rte_fls and rte_bsf to return uint32_t test: fix sign compare warning for rte_bsf64 return type change app/test/test_mbuf.c | 2 +- doc/guides/rel_notes/deprecation.rst | 6 ++++++ lib/eal/include/rte_common.h | 6 +++--- 3 files changed, 10 insertions(+), 4 deletions(-)