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=-0.9 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS 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 03FA7C10DCE for ; Tue, 24 Mar 2020 04:14:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CEE952073E for ; Tue, 24 Mar 2020 04:14:03 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=zx2c4.com header.i=@zx2c4.com header.b="d4sYSCGU" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726166AbgCXEOD (ORCPT ); Tue, 24 Mar 2020 00:14:03 -0400 Received: from frisell.zx2c4.com ([192.95.5.64]:58047 "EHLO frisell.zx2c4.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725784AbgCXEOC (ORCPT ); Tue, 24 Mar 2020 00:14:02 -0400 Received: by frisell.zx2c4.com (ZX2C4 Mail Server) with ESMTP id 78759cff; Tue, 24 Mar 2020 04:06:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=zx2c4.com; h=date:from:to :cc:subject:message-id:references:mime-version:content-type :in-reply-to; s=mail; bh=bRcFHSD3AZu6n0An49AgKL6gT/M=; b=d4sYSCG USolkQUAuN4TPEmQWRGkj5T3GOpX6R5XldJ/M1g+16DS2OPBcoKRJ5XJpkCuOwP2 LoH1Pm9170PLZlrYzMwgOvCRyS+siIdtiTdBmcURrDILebbAXeTRdtNw1Ddf6/B+ 3AsHx/XMbo2tex8VV93g4Yiz5RlCcRhlk27ID2s/XnKPNoCaSgq7f+I9x38s/0vM P5rlntk1m3gvrfcL0ATBRvOw4ltLPTpEiX6GwRIAYTWXwBPM7de1im3Hr3n0Akkg JNeKgUTSf7CHI5HtVsPeefkZJIlKoIKkmFBIm941t7yZkfbdUGrT7LzGNLEXjy05 VaUb3+VZBY/YAsg== Received: by frisell.zx2c4.com (ZX2C4 Mail Server) with ESMTPSA id 9611e98d (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Tue, 24 Mar 2020 04:06:56 +0000 (UTC) Date: Mon, 23 Mar 2020 22:13:47 -0600 From: "Jason A. Donenfeld" To: Luc Van Oostenryck Cc: Christopher Lameter , Dennis Zhou , Ben Dooks , linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, Tejun Heo , Nicholas Piggin , Arnd Bergmann Subject: Re: [PATCH] fix __percpu annotation in asm-generic Message-ID: <20200324041347.GA186169@zx2c4.com> References: <20191126200619.63348-1-luc.vanoostenryck@gmail.com> <20191127175350.GA52308@dennisz-mbp.dhcp.thefacebook.com> <20191127225432.ttwxm3hxtg5utfaz@ltop.local> <20191130000037.zsendu5pk7p75xqf@ltop.local> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20191130000037.zsendu5pk7p75xqf@ltop.local> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Nov 30, 2019 at 01:00:37AM +0100, Luc Van Oostenryck wrote: > Note: it would be much much nicer to do all these type generic > macros with '__auto_type' (only supported in GCC 4.9 IIUC > and supported in sparse but it shouldn't be very hard to do).. I'm curious to know if you know why we're not using __auto_type. Because we're stuck on gcc 4.6, or is there a more subtle reason? Jason