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 E5421A0540; Mon, 8 Aug 2022 23:42:48 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C537D4014F; Mon, 8 Aug 2022 23:42:48 +0200 (CEST) Received: from mail-pl1-f174.google.com (mail-pl1-f174.google.com [209.85.214.174]) by mails.dpdk.org (Postfix) with ESMTP id B31E840141 for ; Mon, 8 Aug 2022 23:42:47 +0200 (CEST) Received: by mail-pl1-f174.google.com with SMTP id g13so2769370plo.6 for ; Mon, 08 Aug 2022 14:42:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=oBNKfMFvVoqFIp+4ZoW4yGeQmr62aEgn9G+nrbJeWB8=; b=4HgC653m0fj57KdKwyBSRM9Awe7PVmBekJkuZN7W+99gO2VKe6T5ulaMs1akGSpoHF HTF89g5F8u52Fc2F8zq4724HUEXfMf9FVLaHfKbx8fjH3lFcHhYOM3rARtChHbkmW6VV 6mCv69dUJ5UZy/D/6W0Q2vSf719RKSF8sEDof4FrzOFPI0NVMveHVUYnc+oImuRv1Zca 86wTsxWXiQvyXk4OO+HHlNiNm8DxEc3EOXW3qkfXlvsSS+SySZu5h/9/b4IPYqaXSIP6 /KhuNjlnKWZwJnJV+SAabKFSQbEMwkrZ4iJMBaw6BzbBvRGMe51H3KlFuVPWsSFIGoFp SvuA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=oBNKfMFvVoqFIp+4ZoW4yGeQmr62aEgn9G+nrbJeWB8=; b=d2gZZNMRKVEe/vc/Yl/C8HLcPa6QYiEPYv20Y24qjfcTeGhuvVXGsu7+mQkas3DXWl mgj2Ad/XEhUVIsSKvbUde4aIGH5vGMfIAhyU6BQoxUaZS1HrWGe/Mx/XsHopH2kDdt39 5a4G0CxQ/E8fjIWa03TQQDxIr9GL1GgwISB8M9fK2/QLLEGXBkZwhErVeSy94GQmCpIl KSfL1tZaOjeHo7MiMmrpAFwtrCYmy+YoYzT4Huu/IEXAxl7JOST1+qRhdZimEiDbR8aX V7s9TJo6BizEjdhv8+K5O3GEE+0JRxAtoJW9oHk+qIj7mM0hjS+XSAQ9YB2aRT7MlCOZ 7CuA== X-Gm-Message-State: ACgBeo0724cLACWCqmBX6NM5iaCRbkd3w6r30YnxBjXSSqDi19PQGc/E 46il1OmyXcG10iAnPXgbPE0Gtg== X-Google-Smtp-Source: AA6agR7Ij9BVMCEcpcANF7wA1Kxnmlrsyjoi+2vHt0xMwCAcKa6XeFZG7DsBGRk8+Gp9sLmTN8ho7g== X-Received: by 2002:a17:902:c406:b0:16e:df76:5267 with SMTP id k6-20020a170902c40600b0016edf765267mr20544138plk.8.1659994966936; Mon, 08 Aug 2022 14:42:46 -0700 (PDT) Received: from hermes.local (204-195-120-218.wavecable.com. [204.195.120.218]) by smtp.gmail.com with ESMTPSA id g11-20020aa79dcb000000b0052d4f2e2f6asm9003828pfq.119.2022.08.08.14.42.46 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 08 Aug 2022 14:42:46 -0700 (PDT) Date: Mon, 8 Aug 2022 14:42:45 -0700 From: Stephen Hemminger To: Tyler Retzlaff Cc: dev@dpdk.org, thomas@monjalon.net, anatoly.burakov@intel.com, ranjit.menon@intel.com, mb@smartsharesystems.com Subject: Re: [PATCH 0/3] cleanup bsf and fls inline function return types Message-ID: <20220808144245.21a1b2d3@hermes.local> In-Reply-To: <1659993692-17479-1-git-send-email-roretzla@linux.microsoft.com> References: <1615418650-19513-1-git-send-email-roretzla@linux.microsoft.com> <1659993692-17479-1-git-send-email-roretzla@linux.microsoft.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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 On Mon, 8 Aug 2022 14:21:29 -0700 Tyler Retzlaff wrote: > 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(-) > Series-Acked-by: Stephen Hemminger