From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from g1t6216.austin.hp.com ([15.73.96.123]:55670 "EHLO g1t6216.austin.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753464AbcA2TbG (ORCPT ); Fri, 29 Jan 2016 14:31:06 -0500 From: Waiman Long To: Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , Alexander Viro Cc: linux-fsdevel@vger.kernel.org, x86@kernel.org, linux-kernel@vger.kernel.org, Peter Zijlstra , Andi Kleen , Scott J Norton , Douglas Hatch , Waiman Long Subject: [PATCH v2 2/3] lib/list_batch, x86: Enable list insertion/deletion batching for x86 Date: Fri, 29 Jan 2016 14:30:45 -0500 Message-Id: <1454095846-19628-3-git-send-email-Waiman.Long@hpe.com> In-Reply-To: <1454095846-19628-1-git-send-email-Waiman.Long@hpe.com> References: <1454095846-19628-1-git-send-email-Waiman.Long@hpe.com> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: System with a large number of CPUs will benefit from the list batching facility when the list lock is contended. If the lock isn't contended, the performance of the list batching function should be similar to the "lock; listop; unlock;" sequence that it replaces. This patch enables it for the x86 architecture. Signed-off-by: Waiman Long --- arch/x86/Kconfig | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 330e738..5b35be7 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -42,6 +42,7 @@ config X86 select ARCH_SUPPORTS_NUMA_BALANCING if X86_64 select ARCH_USE_BUILTIN_BSWAP select ARCH_USE_CMPXCHG_LOCKREF if X86_64 + select ARCH_USE_LIST_BATCHING select ARCH_USE_QUEUED_RWLOCKS select ARCH_USE_QUEUED_SPINLOCKS select ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH if SMP -- 1.7.1