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=-2.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=no 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 134F9C55189 for ; Wed, 22 Apr 2020 11:48:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EA2BD20784 for ; Wed, 22 Apr 2020 11:48:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727085AbgDVLsj (ORCPT ); Wed, 22 Apr 2020 07:48:39 -0400 Received: from gate.crashing.org ([63.228.1.57]:54711 "EHLO gate.crashing.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726043AbgDVLsi (ORCPT ); Wed, 22 Apr 2020 07:48:38 -0400 Received: from gate.crashing.org (localhost.localdomain [127.0.0.1]) by gate.crashing.org (8.14.1/8.14.1) with ESMTP id 03MBm8vc003770; Wed, 22 Apr 2020 06:48:08 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id 03MBm775003769; Wed, 22 Apr 2020 06:48:07 -0500 X-Authentication-Warning: gate.crashing.org: segher set sender to segher@kernel.crashing.org using -f Date: Wed, 22 Apr 2020 06:48:07 -0500 From: Segher Boessenkool To: Rasmus Villemoes Cc: Will Deacon , linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, kernel-team@android.com, Mark Rutland , Michael Ellerman , Peter Zijlstra , Linus Torvalds , Christian Borntraeger , Luc Van Oostenryck , Arnd Bergmann , Peter Oberparleiter , Masahiro Yamada , Nick Desaulniers Subject: Re: [PATCH v4 08/11] READ_ONCE: Drop pointer qualifiers when reading from scalar types Message-ID: <20200422114807.GW26902@gate.crashing.org> References: <20200421151537.19241-1-will@kernel.org> <20200421151537.19241-9-will@kernel.org> <6cbc8ae1-8eb1-a5a0-a584-2081fca1c4aa@rasmusvillemoes.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6cbc8ae1-8eb1-a5a0-a584-2081fca1c4aa@rasmusvillemoes.dk> User-Agent: Mutt/1.4.2.3i Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi! On Wed, Apr 22, 2020 at 12:25:03PM +0200, Rasmus Villemoes wrote: > On 21/04/2020 17.15, Will Deacon wrote: > > Unfortunately, dropping pointer qualifiers inside the macro poses quite > > a challenge, especially since the pointed-to type is permitted to be an > > aggregate, and this is relied upon by mm/ code accessing things like > > 'pmd_t'. Based on numerous hacks and discussions on the mailing list, > > this is the best I've managed to come up with. > > Hm, maybe this can be brought to work, only very lightly tested. It > basically abuses what -Wignored-qualifiers points out: > > warning: type qualifiers ignored on function return type > > Example showing the idea: > > const int c(void); > volatile int v(void); > > int hack(int x, int y) > { > typeof(c()) a = x; > typeof(v()) b = y; > > a += b; > b += a; > a += b; > return a; > } Nasty. I like it :-) > Since that compiles, a cannot be const-qualified, and the generated code > certainly suggests that b is not volatile-qualified. So something like > > #define unqual_type(x) _unqual_type(x, unique_id_dance) > #define _unqual_type(x, id) typeof( ({ > typeof(x) id(void); > id(); > }) ) > > and perhaps some _Pragma("GCC diagnostic push")/_Pragma("GCC diagnostic > ignored -Wignored-qualifiers")/_Pragma("GCC diagnostic pop") could > prevent the warning (which is in -Wextra, so I don't think it would > appear in a normal build anyway). > > No idea how well any of this would work across gcc versions or with clang. https://gcc.gnu.org/legacy-ml/gcc-patches/2016-05/msg01054.html This is defined to work this way in ISO C since C11. But, it doesn't work with GCC before GCC 7 :-( Segher