From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751602AbdF1M2H (ORCPT ); Wed, 28 Jun 2017 08:28:07 -0400 Received: from mail-oi0-f49.google.com ([209.85.218.49]:34926 "EHLO mail-oi0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751489AbdF1M16 (ORCPT ); Wed, 28 Jun 2017 08:27:58 -0400 MIME-Version: 1.0 In-Reply-To: References: <85d51d3551b676ba1fc40e8fbddd2eadd056d8dd.1498140838.git.dvyukov@google.com> <20170628100246.7nsvhblgi3xjbc4m@breakpoint.cc> From: Dmitry Vyukov Date: Wed, 28 Jun 2017 14:27:37 +0200 Message-ID: Subject: Re: [PATCH] locking/atomics: don't alias ____ptr To: Thomas Gleixner Cc: Sebastian Andrzej Siewior , Ingo Molnar , Mark Rutland , Peter Zijlstra , Will Deacon , "H. Peter Anvin" , Andrey Ryabinin , kasan-dev , "x86@kernel.org" , LKML , Andrew Morton , "linux-mm@kvack.org" , Linus Torvalds Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jun 28, 2017 at 2:24 PM, Thomas Gleixner wrote: > On Wed, 28 Jun 2017, Dmitry Vyukov wrote: >> On Wed, Jun 28, 2017 at 1:10 PM, Thomas Gleixner wrote: >> > #define cmpxchg_local(ptr, old, new) \ >> > ({ \ >> > - __typeof__(ptr) ____ptr = (ptr); \ >> > - kasan_check_write(____ptr, sizeof(*____ptr)); \ >> > - arch_cmpxchg_local(____ptr, (old), (new)); \ >> > + kasan_check_write((ptr), sizeof(*(ptr))); \ >> > + arch_cmpxchg_local((ptr), (old), (new)); \ >> >> >> /\/\/\/\/\/\/\/\/\/\/\/\ >> >> These are macros. >> If ptr is foo(), then we will call foo() twice. > > If that's true, the foo() will be evaluated a gazillion more times down the > way to the end of this macro maze. No. If we do: __typeof__(ptr) ____ptr = (ptr); and then only use ____ptr, then ptr is evaluated only once regardless of what the rest of macros do.