From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 83177C76196 for ; Tue, 28 Mar 2023 22:25:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229595AbjC1WZM (ORCPT ); Tue, 28 Mar 2023 18:25:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52302 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229452AbjC1WZL (ORCPT ); Tue, 28 Mar 2023 18:25:11 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9E5A410FD for ; Tue, 28 Mar 2023 15:25:10 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 34F36619AF for ; Tue, 28 Mar 2023 22:25:10 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8C30CC433EF; Tue, 28 Mar 2023 22:25:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1680042309; bh=qTsqDG5hjwUa/zRAaurct37ioOVqdyIFWOIOWjB3FKc=; h=Date:To:From:Subject:From; b=pG8owcbbFZ41V4wDYjudH1CTzNu99R1ASnyNewyJfSVv3r5yWv3vLhJK1WgStd/0P 2BFm8+PoH9CEVjoce6aAnBQM5QHimvTwRGFWt13H2la74roiciAw74yEQV9Vptzchu 2tjiS06ySJfqewHSribA3oh1WvMMUTJ9lSlzuQWc= Date: Tue, 28 Mar 2023 15:25:09 -0700 To: mm-commits@vger.kernel.org, zhaoyang.huang@unisoc.com, vbabka@suse.cz, rdunlap@infradead.org, peterz@infradead.org, ojeda@kernel.org, ndesaulniers@google.com, nathan@kernel.org, linux@rasmusvillemoes.dk, keescook@chromium.org, jpoimboe@kernel.org, geert+renesas@glider.be, dan.j.williams@intel.com, ye.xingchen@zte.com.cn, akpm@linux-foundation.org From: Andrew Morton Subject: [merged mm-hotfixes-stable] kconfigdebug-fix-sched_debug-dependency.patch removed from -mm tree Message-Id: <20230328222509.8C30CC433EF@smtp.kernel.org> Precedence: bulk Reply-To: linux-kernel@vger.kernel.org List-ID: X-Mailing-List: mm-commits@vger.kernel.org The quilt patch titled Subject: Kconfig.debug: fix SCHED_DEBUG dependency has been removed from the -mm tree. Its filename was kconfigdebug-fix-sched_debug-dependency.patch This patch was dropped because it was merged into the mm-hotfixes-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: ye xingchen Subject: Kconfig.debug: fix SCHED_DEBUG dependency Date: Sun, 29 Jan 2023 11:10:09 +0800 (CST) The path for SCHED_DEBUG is /sys/kernel/debug/sched. So, SCHED_DEBUG should depend on DEBUG_FS, not PROC_FS. Link: https://lkml.kernel.org/r/202301291110098787982@zte.com.cn Signed-off-by: ye xingchen Cc: Dan Williams Cc: Geert Uytterhoeven Cc: Josh Poimboeuf Cc: Kees Cook Cc: Miguel Ojeda Cc: Nathan Chancellor Cc: Nick Desaulniers Cc: Peter Zijlstra Cc: Randy Dunlap Cc: Rasmus Villemoes Cc: Vlastimil Babka Cc: Zhaoyang Huang Signed-off-by: Andrew Morton --- lib/Kconfig.debug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/lib/Kconfig.debug~kconfigdebug-fix-sched_debug-dependency +++ a/lib/Kconfig.debug @@ -1143,7 +1143,7 @@ menu "Scheduler Debugging" config SCHED_DEBUG bool "Collect scheduler debugging info" - depends on DEBUG_KERNEL && PROC_FS + depends on DEBUG_KERNEL && DEBUG_FS default y help If you say Y here, the /sys/kernel/debug/sched file will be provided _ Patches currently in -mm which might be from ye.xingchen@zte.com.cn are