From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758345AbcHaHFW (ORCPT ); Wed, 31 Aug 2016 03:05:22 -0400 Received: from merlin.infradead.org ([205.233.59.134]:44514 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752767AbcHaHFS (ORCPT ); Wed, 31 Aug 2016 03:05:18 -0400 Date: Wed, 31 Aug 2016 09:04:57 +0200 From: Peter Zijlstra To: Kim Phillips Cc: Ingo Molnar , Arnaldo Carvalho de Melo , Alexander Shishkin , Andrew Morton , Kees Cook , Johannes Weiner , Arnd Bergmann , Tejun Heo , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linuxppc-dev@lists.ozlabs.org, Michael Ellerman , Catalin Marinas , Will Deacon , Mark Rutland Subject: Re: [PATCH 1/2] perf_event: remove unused DEBUG_PERF_USE_VMALLOC Message-ID: <20160831070457.GY10138@twins.programming.kicks-ass.net> References: <20160830140834.6d1edf7abd9d95c02dae7820@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160830140834.6d1edf7abd9d95c02dae7820@arm.com> User-Agent: Mutt/1.5.23.1 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Aug 30, 2016 at 02:08:34PM -0500, Kim Phillips wrote: > This 'DEBUG'-prefixed version of PERF_USE_VMALLOC is not used anywhere. > It appears to be leftovers from commit 906010b "perf_event: Provide > vmalloc() based mmap() backing" that introduced it. > > Not sure what commit cb30711 "perf_event: Don't allow vmalloc() backed > perf on powerpc" was trying to do with it either. > > Signed-off-by: Kim Phillips > Cc: Peter Zijlstra > Cc: Michael Ellerman > --- > init/Kconfig | 13 ------------- > 1 file changed, 13 deletions(-) > > diff --git a/init/Kconfig b/init/Kconfig > index cac3f09..934a61f 100644 > --- a/init/Kconfig > +++ b/init/Kconfig > @@ -1707,19 +1707,6 @@ config PERF_EVENTS > > Say Y if unsure. > > -config DEBUG_PERF_USE_VMALLOC > - default n > - bool "Debug: use vmalloc to back perf mmap() buffers" > - depends on PERF_EVENTS && DEBUG_KERNEL && !PPC > - select PERF_USE_VMALLOC ^^^^^ It forces the use of vmalloc backed pages for the ring-buffer so that we can test that code on x86, which otherwise doesn't use it.