From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753753AbbE0Sl0 (ORCPT ); Wed, 27 May 2015 14:41:26 -0400 Received: from mga02.intel.com ([134.134.136.20]:56503 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753116AbbE0SgD (ORCPT ); Wed, 27 May 2015 14:36:03 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,507,1427785200"; d="scan'208";a="499041760" Subject: [PATCH 07/19] x86, mpx: boot-time disable 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, 27 May 2015 11:36:17 -0700 References: <20150527183609.964CC3BA@viggo.jf.intel.com> In-Reply-To: <20150527183609.964CC3BA@viggo.jf.intel.com> Message-Id: <20150527183617.8CF679B7@viggo.jf.intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Dave Hansen MPX has the _potential_ to cause some issues. Say part of your init system tried to protect one of its components from buffer overflows with MPX. If there were a false positive, it's possible that MPX could keep a system from booting. MPX could also potentially cause performance issues since it is present in hot paths like the unmap path. Allow it to be disabled at boot time. Signed-off-by: Dave Hansen Reviewed-by: Thomas Gleixner