lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <1493719166-9036-2-git-send-email-gabriele.paoloni@huawei.com> Date: Tue, 2 May 2017 10:59:25 +0100 From: Gabriele Paoloni <gabriele.paoloni@...wei.com> To: <davem@...emloft.com>, <alexander.duyck@...il.com> CC: <gabriele.paoloni@...wei.com>, <helgaas@...nel.org>, <leedom@...il.com>, <leedom@...lsio.com>, <linuxarm@...wei.com>, <werner@...lsio.com>, <ganeshgr@...lsio.com>, <arjun@...lsio.com>, <asit.k.mallick@...el.com>, <patrick.j.cramer@...el.com>, <ashok.raj@...el.com>, <dingtianhong@...wei.com>, <mark.rutland@....com>, <amira@...lanox.com>, <catalin.marinas@....com>, <will.deacon@....com>, <David.Laight@...lab.com>, <jeffrey.t.kirsher@...el.com>, <netdev@...r.kernel.org>, <robin.murphy@....com>, <davem@...emloft.net>, <linux-arm-kernel@...ts.infradead.org> Subject: [RFC PATCH 1/2] net: revert commit 1a8b6d76dc5b From: gabriele paoloni <gabriele.paoloni@...wei.com> commit 1a8b6d76dc5b was introducing relaxed ordering as global symbol. This does not make sense as relaxed ordering support depends on the PCIe EP and on the Root Complex (therefore it is not related to the CPU architecture) Signed-off-by: Gabriele Paoloni <gabriele.paoloni@...wei.com> --- arch/Kconfig | 3 --- arch/sparc/Kconfig | 1 - drivers/net/ethernet/intel/ixgbe/ixgbe_common.c | 2 +- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/arch/Kconfig b/arch/Kconfig index c4d6833..c0b118d 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -851,7 +851,4 @@ config STRICT_MODULE_RWX and non-text memory will be made non-executable. This provides protection against certain security exploits (e.g. writing to text) -config ARCH_WANT_RELAX_ORDER - bool - source "kernel/gcov/Kconfig" diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig index ed96869..3f47142 100644 --- a/arch/sparc/Kconfig +++ b/arch/sparc/Kconfig @@ -43,7 +43,6 @@ config SPARC select ARCH_HAS_SG_CHAIN select CPU_NO_EFFICIENT_FFS select LOCKDEP_SMALL if LOCKDEP - select ARCH_WANT_RELAX_ORDER config SPARC32 def_bool !64BIT diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c index c38d50c..094e1d6 100644 --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c @@ -350,7 +350,7 @@ s32 ixgbe_start_hw_gen2(struct ixgbe_hw *hw) } IXGBE_WRITE_FLUSH(hw); -#ifndef CONFIG_ARCH_WANT_RELAX_ORDER +#ifndef CONFIG_SPARC /* Disable relaxed ordering */ for (i = 0; i < hw->mac.max_tx_queues; i++) { u32 regval; -- 2.7.4
Powered by blists - more mailing lists