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 6DE3F43C2C; Wed, 28 Feb 2024 18:29:45 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5E1CA41148; Wed, 28 Feb 2024 18:29:45 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id B88BD42D35 for ; Wed, 28 Feb 2024 18:29:43 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 24D2B20B74C0; Wed, 28 Feb 2024 09:29:43 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 24D2B20B74C0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1709141383; bh=r9p6JWdGWgTnP/nr1RlUmlDDL0ipxDa5jPkKmU/a5H4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Llt7EOKZTfkBZe5mAnWWF20ZnUErtKhGfC4k5LRIdmamcfEX5j90KRXssuVZsdYIn waF5Iox5pb4ukk7JZFNNlNV5mW00HBcjlW3TG05mZqD1EGkK+Sn3fXrcUMqJO57CtF GVFYIc6Brt1UlpDvqlidVoRnAxV2VkoC1LLraQyQ= Date: Wed, 28 Feb 2024 09:29:43 -0800 From: Tyler Retzlaff To: Morten =?iso-8859-1?Q?Br=F8rup?= Cc: dev@dpdk.org, Bruce Richardson , Honnappa Nagarahalli , Vladimir Medvedkin Subject: Re: [PATCH 3/3] rcu: use rte macro instead of GCC attribute Message-ID: <20240228172943.GA8192@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <1709075273-6885-1-git-send-email-roretzla@linux.microsoft.com> <1709075273-6885-4-git-send-email-roretzla@linux.microsoft.com> <98CBD80474FA8B44BF855DF32C47DC35E9F280@smartserver.smartshare.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <98CBD80474FA8B44BF855DF32C47DC35E9F280@smartserver.smartshare.dk> User-Agent: Mutt/1.5.21 (2010-09-15) 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 Wed, Feb 28, 2024 at 10:29:11AM +0100, Morten Brørup wrote: > > From: Tyler Retzlaff [mailto:roretzla@linux.microsoft.com] > > Sent: Wednesday, 28 February 2024 00.08 > > > > Use existing __rte_pure macro from rte_common.h instead of directly > > Typo: __rte_pure -> __rte_may_alias > > The code is correct, only the description has the typo. > > > using __attribute__((__may_alias__)). > > > > Signed-off-by: Tyler Retzlaff > > --- > > With the typo corrected, bah, i get tired :) thanks. > For the series, > Reviewed-by: Morten Brørup