From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757663AbbDVS1k (ORCPT ); Wed, 22 Apr 2015 14:27:40 -0400 Received: from mga01.intel.com ([192.55.52.88]:25072 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757638AbbDVS1h (ORCPT ); Wed, 22 Apr 2015 14:27:37 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.11,625,1422950400"; d="scan'208";a="713753889" Subject: [PATCH 16/17] x86, mpx: allow mixed binaries again To: linux-kernel@vger.kernel.org Cc: x86@kernel.org, tglx@linutronix.de, Dave Hansen , dave.hansen@linux.intel.com From: Dave Hansen Date: Wed, 22 Apr 2015 11:27:50 -0700 References: <20150422182729.0512E57D@viggo.jf.intel.com> In-Reply-To: <20150422182729.0512E57D@viggo.jf.intel.com> Message-Id: <20150422182750.9FBA5EF6@viggo.jf.intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Dave Hansen We explicitly disable allowing 32-bit binaries to enable MPX on 64-bit kernels. Re-allow that. Signed-off-by: Dave Hansen --- b/arch/x86/mm/mpx.c | 6 ------ 1 file changed, 6 deletions(-) diff -puN arch/x86/mm/mpx.c~x86-mpx-allow-mixed-binaries-again arch/x86/mm/mpx.c --- a/arch/x86/mm/mpx.c~x86-mpx-allow-mixed-binaries-again 2015-04-22 11:16:23.832073480 -0700 +++ b/arch/x86/mm/mpx.c 2015-04-22 11:16:23.836073661 -0700 @@ -370,12 +370,6 @@ static __user void *task_get_bounds_dir( return MPX_INVALID_BOUNDS_DIR; /* - * 32-bit binaries on 64-bit kernels are currently - * unsupported. - */ - if (IS_ENABLED(CONFIG_X86_64) && test_thread_flag(TIF_IA32)) - return MPX_INVALID_BOUNDS_DIR; - /* * The bounds directory pointer is stored in a register * only accessible if we first do an xsave. */ _