From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:41702 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751832AbdEIJUE (ORCPT ); Tue, 9 May 2017 05:20:04 -0400 Subject: Patch "arm64: remove wrong CONFIG_PROC_SYSCTL ifdef" has been added to the 4.10-stable tree To: juri.lelli@arm.com, catalin.marinas@arm.com, gregkh@linuxfoundation.org, sudeep.holla@arm.com, will.deacon@arm.com Cc: , From: Date: Tue, 09 May 2017 11:19:37 +0200 Message-ID: <149432157756251@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: This is a note to let you know that I've just added the patch titled arm64: remove wrong CONFIG_PROC_SYSCTL ifdef to the 4.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: arm64-remove-wrong-config_proc_sysctl-ifdef.patch and it can be found in the queue-4.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From fe0a7ef74d1f65b86820a54636323df2b31e0c3f Mon Sep 17 00:00:00 2001 From: Juri Lelli Date: Mon, 6 Feb 2017 16:00:09 +0000 Subject: arm64: remove wrong CONFIG_PROC_SYSCTL ifdef From: Juri Lelli commit fe0a7ef74d1f65b86820a54636323df2b31e0c3f upstream. The sysfs cpu_capacity entry for each CPU has nothing to do with PROC_FS, nor it's in /proc/sys path. Remove such ifdef. Cc: Will Deacon Cc: Catalin Marinas Reported-and-suggested-by: Sudeep Holla Fixes: be8f185d8af4 ('arm64: add sysfs cpu_capacity attribute') Signed-off-by: Juri Lelli Signed-off-by: Will Deacon Signed-off-by: Greg Kroah-Hartman --- arch/arm64/kernel/topology.c | 2 -- 1 file changed, 2 deletions(-) --- a/arch/arm64/kernel/topology.c +++ b/arch/arm64/kernel/topology.c @@ -41,7 +41,6 @@ static void set_capacity_scale(unsigned per_cpu(cpu_scale, cpu) = capacity; } -#ifdef CONFIG_PROC_SYSCTL static ssize_t cpu_capacity_show(struct device *dev, struct device_attribute *attr, char *buf) @@ -98,7 +97,6 @@ static int register_cpu_capacity_sysctl( return 0; } subsys_initcall(register_cpu_capacity_sysctl); -#endif static u32 capacity_scale; static u32 *raw_capacity; Patches currently in stable-queue which might be from juri.lelli@arm.com are queue-4.10/arm64-remove-wrong-config_proc_sysctl-ifdef.patch