From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754483AbbK0JwF (ORCPT ); Fri, 27 Nov 2015 04:52:05 -0500 Received: from www.linutronix.de ([62.245.132.108]:42428 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754042AbbK0JwA (ORCPT ); Fri, 27 Nov 2015 04:52:00 -0500 Date: Fri, 27 Nov 2015 10:51:16 +0100 (CET) From: Thomas Gleixner To: Dave Hansen cc: linux-kernel@vger.kernel.org, x86@kernel.org, dave.hansen@linux.intel.com Subject: Re: [PATCH 17/37] x86, pkeys: add functions to fetch PKRU In-Reply-To: <20151117033534.75F03664@viggo.jf.intel.com> Message-ID: References: <20151117033511.BFFA1440@viggo.jf.intel.com> <20151117033534.75F03664@viggo.jf.intel.com> 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 On Mon, 16 Nov 2015, Dave Hansen wrote: > +#ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS > +static inline u32 __read_pkru(void) > +{ > + unsigned int eax, edx; > + unsigned int ecx = 0; > + unsigned int pkru; > + > + asm volatile(".byte 0x0f,0x01,0xee\n\t" > + : "=a" (eax), "=d" (edx) > + : "c" (ecx)); > + pkru = eax; > + return pkru; Wouldn't a simple 'return eax;' be sufficient? Thanks, tglx