Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751472AbbLHRZn (ORCPT ); Tue, 8 Dec 2015 12:25:43 -0500 Received: from www.linutronix.de ([62.245.132.108]:51044 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751096AbbLHRZl (ORCPT ); Tue, 8 Dec 2015 12:25:41 -0500 Date: Tue, 8 Dec 2015 18:24:35 +0100 (CET) From: Thomas Gleixner To: Dave Hansen cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, x86@kernel.org, dave.hansen@linux.intel.com Subject: Re: [PATCH 10/34] x86, pkeys: arch-specific protection bitsy In-Reply-To: <566706A1.3040906@sr71.net> Message-ID: References: <20151204011424.8A36E365@viggo.jf.intel.com> <20151204011438.E50D1498@viggo.jf.intel.com> <566706A1.3040906@sr71.net> User-Agent: Alpine 2.11 (DEB 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Linutronix-Spam-Score: -1.0 X-Linutronix-Spam-Level: - X-Linutronix-Spam-Status: No , -1.0 points, 5.0 required, ALL_TRUSTED=-1,SHORTCIRCUIT=-0.0001 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2599 Lines: 80 Dave, On Tue, 8 Dec 2015, Dave Hansen wrote: > On 12/08/2015 07:15 AM, Thomas Gleixner wrote: > > On Thu, 3 Dec 2015, Dave Hansen wrote: > >> > >> +static inline int vma_pkey(struct vm_area_struct *vma) > > > > Shouldn't this return something unsigned? > > Ingo had asked that we use 'int' in the syscalls at some point. We also > use a -1 to mean "no pkey set" (to differentiate it from pkey=0) at > least at the very top of the syscall level. Ok. > >> +{ > >> + u16 pkey = 0; > >> +#ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS > >> + unsigned long vma_pkey_mask = VM_PKEY_BIT0 | VM_PKEY_BIT1 | > >> + VM_PKEY_BIT2 | VM_PKEY_BIT3; > >> + /* > >> + * ffs is one-based, not zero-based, so bias back down by 1. > >> + */ > >> + int vm_pkey_shift = __builtin_ffsl(vma_pkey_mask) - 1; > > > > Took me some time to figure out that this will resolve to a compile > > time constant (hopefully). Is there a reason why we don't have a > > VM_PKEY_SHIFT constant in the header file which makes that code just > > simple and intuitive? > > All of the VM_* flags are #defined as bitmaps directly and don't define > shifts: > > #define VM_MAYWRITE 0x00000020 > #define VM_MAYEXEC 0x00000040 > #define VM_MAYSHARE 0x00000080 > ... > > So to get a shift we've either got to do a ffs somewhere, or we have to > define the VM_PKEY_BIT*'s differently from all of the other VM_* flags. > Or, we do something along the lines of: > > #define VM_PKEY_BIT0 0x100000000UL > #define __VM_PKEY_SHIFT (32) Well, yes. But these are the new "high" bits so we really can do it: #define VM_KEY_BIT_SHIFT 32 #define VM_KEY_BIT0 BIT(VM_KEY_BIT_SHIFT); ... > and we run a small risk that somebody will desynchronize the shift and > the bit definition. > > We only need this shift in this *one* place, so that's why I opted for > the local variable and ffs. > > >> + /* > >> + * gcc generates better code if we do this rather than: > >> + * pkey = (flags & mask) >> shift > >> + */ > >> + pkey = (vma->vm_flags >> vm_pkey_shift) & > >> + (vma_pkey_mask >> vm_pkey_shift); > > > > My gcc (4.9) does it the other way round for whatever reason. > > I'll go recheck. It's one instruction difference and that even depends on the offset of vm_flags in the struct. So we really can go for the readable version :) Thanks, tglx -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/