From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.5 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,NICE_REPLY_A, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1AC5CC4363A for ; Thu, 8 Oct 2020 13:45:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id BC3EC21897 for ; Thu, 8 Oct 2020 13:45:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730376AbgJHNpc (ORCPT ); Thu, 8 Oct 2020 09:45:32 -0400 Received: from foss.arm.com ([217.140.110.172]:58414 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728969AbgJHNpb (ORCPT ); Thu, 8 Oct 2020 09:45:31 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 27D561063; Thu, 8 Oct 2020 06:45:31 -0700 (PDT) Received: from [192.168.2.22] (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 607283F71F; Thu, 8 Oct 2020 06:45:29 -0700 (PDT) From: =?UTF-8?Q?Andr=c3=a9_Przywara?= Subject: Re: [PATCH v2 02/14] perf arm-spe: Fix a typo in comment To: Leo Yan , Arnaldo Carvalho de Melo , Peter Zijlstra , Ingo Molnar , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , Wei Li , James Clark , Dave Martin , linux-kernel@vger.kernel.org, Al Grant References: <20200929133917.9224-1-leo.yan@linaro.org> <20200929133917.9224-3-leo.yan@linaro.org> Organization: ARM Ltd. Message-ID: Date: Thu, 8 Oct 2020 14:44:32 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.12.0 MIME-Version: 1.0 In-Reply-To: <20200929133917.9224-3-leo.yan@linaro.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-GB Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 29/09/2020 14:39, Leo Yan wrote: > Fix a typo: s/iff/if. > > Signed-off-by: Leo Yan Reviewed-by: Andre Przywara Cheers, Andre > --- > tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c b/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c > index 46ddb53a6457..7c7b5eb09fba 100644 > --- a/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c > +++ b/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c > @@ -142,7 +142,7 @@ static int arm_spe_get_events(const unsigned char *buf, size_t len, > > /* we use index to identify Events with a less number of > * comparisons in arm_spe_pkt_desc(): E.g., the LLC-ACCESS, > - * LLC-REFILL, and REMOTE-ACCESS events are identified iff > + * LLC-REFILL, and REMOTE-ACCESS events are identified if > * index > 1. > */ > packet->index = ret - 1; >