From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 7B4C0321AE for ; Wed, 6 Dec 2023 13:51:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="MKqfpPY9" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 253ABC433C8; Wed, 6 Dec 2023 13:51:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1701870686; bh=GLeeHfOeGoG5/MxNRdUC4rUQIwViNOc7KTKzMVOdT6U=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=MKqfpPY9RMsiEns7RW18gyj3JUAdojEJ+cZ0KB6WLtPxgAwGAIv3gnwrQ4mQDiayh CfWj4Z5RCjAFC5z9MMy6hr0tz8p6CRFOngZAYbLQxShpFlJC0ME3X9R4ShDNUKpUC6 2vghHGsRRYkQhoA7Cyj0pzfxF7/vXHpG30dfC0IehWvx685kxHdoY9dO7QjPIUULz9 UYFbF4IOXWmOey0+6/K9+6k7ufufE2J/nsbufkQTPOXkR7sc/vRxmA8zLInfkXNIfz Of0FxTDhF9xGQNQziU8JI9MNnIo+diLY8hzQRBXawY8uzwYds+egIFu3yiJ8005wgn at0I2nOlcPXKQ== Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id 43A78403EF; Wed, 6 Dec 2023 10:51:24 -0300 (-03) Date: Wed, 6 Dec 2023 10:51:24 -0300 From: Arnaldo Carvalho de Melo To: Namhyung Kim Cc: Ian Rogers , Peter Zijlstra , Ingo Molnar , Mark Rutland , Alexander Shishkin , Jiri Olsa , Adrian Hunter , Nick Terrell , Kan Liang , Andi Kleen , Kajol Jain , Athira Rajeev , Huacai Chen , Masami Hiramatsu , Vincent Whitchurch , "Steinar H. Gunderson" , Liam Howlett , Miguel Ojeda , Colin Ian King , Dmitrii Dolgov <9erthalion6@gmail.com>, Yang Jihong , Ming Wang , James Clark , K Prateek Nayak , Sean Christopherson , Leo Yan , Ravi Bangoria , German Gomez , Changbin Du , Paolo Bonzini , Li Dong , Sandipan Das , liuwenyu , linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org, Guilherme Amadio Subject: Re: [PATCH v5 14/50] perf thread: Add missing RC_CHK_EQUAL Message-ID: References: <20231127220902.1315692-1-irogers@google.com> <20231127220902.1315692-15-irogers@google.com> Precedence: bulk X-Mailing-List: linux-perf-users@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Url: http://acmel.wordpress.com Em Mon, Dec 04, 2023 at 03:41:42PM -0800, Namhyung Kim escreveu: > On Mon, Nov 27, 2023 at 2:09 PM Ian Rogers wrote: > > > > Comparing pointers without RC_CHK_ACCESS means the indirect object > > will be compared rather than the underlying maps when REFCNT_CHECKING > > is enabled. Fix by adding missing RC_CHK_EQUAL. > > > > Signed-off-by: Ian Rogers > > Acked-by: Namhyung Kim Thanks, applied to perf-tools-next. - Arnaldo