From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753238AbbCWRvR (ORCPT ); Mon, 23 Mar 2015 13:51:17 -0400 Received: from mx1.redhat.com ([209.132.183.28]:44950 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752552AbbCWRvP (ORCPT ); Mon, 23 Mar 2015 13:51:15 -0400 Message-ID: <5510528F.7050507@redhat.com> Date: Mon, 23 Mar 2015 18:51:11 +0100 From: Denys Vlasenko User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Steven Rostedt CC: Andy Lutomirski , Linus Torvalds , Ingo Molnar , Borislav Petkov , "H. Peter Anvin" , Oleg Nesterov , Frederic Weisbecker , Alexei Starovoitov , Will Drewry , Kees Cook , x86@kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2] x86: stop using PER_CPU_VAR(kernel_stack) References: <1426970678-600-1-git-send-email-dvlasenk@redhat.com> <20150323101815.35bd61c7@gandalf.local.home> <551048E9.6060800@redhat.com> <20150323132847.79e18ea5@grimm.local.home> <55104F81.8050803@redhat.com> <20150323134510.2a04e387@gandalf.local.home> In-Reply-To: <20150323134510.2a04e387@gandalf.local.home> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 03/23/2015 06:45 PM, Steven Rostedt wrote: > On Mon, 23 Mar 2015 18:38:09 +0100 > Denys Vlasenko wrote: > >>> Can we do a: >>> >>> #define cpu_current_top_of_stack (cpu_tss + TSS_sp0) >> >> We already do something similar: >> >> static inline unsigned long current_top_of_stack(void) >> { >> #ifdef CONFIG_X86_64 >> return this_cpu_read_stable(cpu_tss.x86_tss.sp0); >> #else >> /* sp0 on x86_32 is special in and around vm86 mode. */ >> return this_cpu_read_stable(cpu_current_top_of_stack); >> #endif >> } > > So can we then have: > > #ifdef __ASSEMBLY__ > # define cpu_current_top_of_stack (cpu_tss + TSS_sp0) > #else > # define cpu_current_top_of_stack (cpu_tss.x86_tss.sp0) > #endif > > And get rid of that if statement in the static inline? I prefer less macro indirection in assembly code, but I won't object too strongly if this would be done. It's up to other x86 maintainers to agree - I'm touching the code recently changed by Andy, he may see the way forward somewhat differently.