From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756793AbcB0Sfb (ORCPT ); Sat, 27 Feb 2016 13:35:31 -0500 Received: from mail-ig0-f194.google.com ([209.85.213.194]:34355 "EHLO mail-ig0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756590AbcB0Sfa (ORCPT ); Sat, 27 Feb 2016 13:35:30 -0500 MIME-Version: 1.0 In-Reply-To: <20160227145809.GD6356@twins.programming.kicks-ass.net> References: <1456270120-7560-1-git-send-email-mathieu.desnoyers@efficios.com> <967083634.8940.1456507201156.JavaMail.zimbra@efficios.com> <724964987.9217.1456518255392.JavaMail.zimbra@efficios.com> <7096DA23-3908-40DC-A46B-C4CF2252CEE8@zytor.com> <1150363257.9781.1456533630895.JavaMail.zimbra@efficios.com> <56D14132.5050100@zytor.com> <2053850250.10158.1456582501604.JavaMail.zimbra@efficios.com> <20160227145809.GD6356@twins.programming.kicks-ass.net> Date: Sat, 27 Feb 2016 10:35:28 -0800 X-Google-Sender-Auth: IRi_5hY12rlxhiJ_scR80WPK55Y Message-ID: Subject: Re: [PATCH v4 1/5] getcpu_cache system call: cache CPU number of running thread From: Linus Torvalds To: Peter Zijlstra Cc: Mathieu Desnoyers , "H. Peter Anvin" , Thomas Gleixner , Andrew Morton , Russell King , Ingo Molnar , Linux Kernel Mailing List , linux-api , Paul Turner , Andrew Hunter , Andy Lutomirski , Andi Kleen , Dave Watson , Chris Lameter , Ben Maurer , rostedt , "Paul E. McKenney" , Josh Triplett , Catalin Marinas , Will Deacon , Michael Kerrisk 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 Sat, Feb 27, 2016 at 6:58 AM, Peter Zijlstra wrote: > > Paul's patches have the following structure: > > struct thread_local_abi { > union { > struct { > u32 cpu_id; > u32 seq; > }; > u64 cpu_seq; > }; > unsigned long post_commit_ip; > }; Please don't do "unsigned long" in ABI structures any more. Make it u64, and make sure it is 64-bit aligned (which it would be in this case). Make it so that we don't have to have separate compat paths. Linus