From nobody Thu Dec 18 08:30:45 2025 Received: from andre.telenet-ops.be (andre.telenet-ops.be [195.130.132.53]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 86B6C249ED for ; Thu, 25 Jul 2024 08:05:42 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.132.53 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1721894745; cv=none; b=VHYRzM2kUkpq3/dUE/WoPUuzhzinzPEnltZt5MR+yaRfRTmEUKWfaEYS1F7C6isi8F8NfbULVUhaM5J9GtTErWcPKBxJlRDaXrVSqFaSQNmSLCFgg2pF/pMY+3F1mJW0qFgXY7lesOtss89XjpbIp6yu3R3BnHSMFEpctqAcwCo= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1721894745; c=relaxed/simple; bh=juiRPFb3ysJvYNyEc/viUX0sORvuirQqenTgO4aqjLA=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=DEZc/8fRiJTZlg2joWUAqRweKcD78NE7NFAKIiWyV1IqDoW4GrR368P0kQbmri+p1M16Bt7vROqqUKJjx0/FtgF+aj28F21EPqblIyF25sW/KhLoEcHglne6wDtKW3rYVCTNXnDbh/QbbwQ1um1lIJz0hoGGkt0IiEy1TXREJS8= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be; spf=none smtp.mailfrom=linux-m68k.org; arc=none smtp.client-ip=195.130.132.53 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux-m68k.org Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed80:9697:b0ae:59fa:9dc8]) by andre.telenet-ops.be with bizsmtp id rk5b2C00730uYn301k5bjA; Thu, 25 Jul 2024 10:05:35 +0200 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1sWtTO-003PCh-6H; Thu, 25 Jul 2024 10:05:35 +0200 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1sWtTj-008liP-5u; Thu, 25 Jul 2024 10:05:35 +0200 From: Geert Uytterhoeven To: Christian Brauner , David Howells , Jeff Layton Cc: netfs@lists.linux.dev, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] netfs: Fix dependency of NETFS_DEBUG Date: Thu, 25 Jul 2024 10:05:30 +0200 Message-Id: <20240725080530.2089573-1-geert+renesas@glider.be> X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The configuration symbol "NETFS" does not exist. Its proper name is "NETFS_SUPPORT". Fixes: fcad93360df4d04b ("netfs: Rename CONFIG_FSCACHE_DEBUG to CONFIG_NETF= S_DEBUG") Signed-off-by: Geert Uytterhoeven --- fs/netfs/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/netfs/Kconfig b/fs/netfs/Kconfig index 1b78e8b65ebc142d..7701c037c3283f27 100644 --- a/fs/netfs/Kconfig +++ b/fs/netfs/Kconfig @@ -24,7 +24,7 @@ config NETFS_STATS =20 config NETFS_DEBUG bool "Enable dynamic debugging netfslib and FS-Cache" - depends on NETFS + depends on NETFS_SUPPORT help This permits debugging to be dynamically enabled in the local caching management module. If this is set, the debugging output may be --=20 2.34.1