From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Nicholas A. Bellinger" Subject: [PATCH] net: Make NETCONSOLE_DYNAMIC depend on CONFIGFS_FS Date: Sat, 15 Jan 2011 15:16:08 -0800 Message-ID: <1295133371-25990-2-git-send-email-nab@linux-iscsi.org> References: <1295133371-25990-1-git-send-email-nab@linux-iscsi.org> Cc: linux-kernel , linux-fsdevel , Joel Becker , Randy Dunlap , Stephen Rothwell , James Bottomley , Nicholas Bellinger To: Linus Torvalds Return-path: Received: from smtp103.sbc.mail.mud.yahoo.com ([68.142.198.202]:33757 "HELO smtp103.sbc.mail.mud.yahoo.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1754148Ab1AOXWu (ORCPT ); Sat, 15 Jan 2011 18:22:50 -0500 In-Reply-To: <1295133371-25990-1-git-send-email-nab@linux-iscsi.org> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: From: Nicholas Bellinger This patch fixes the following kconfig error after changing CONFIGFS_FS -> select SYSFS: fs/sysfs/Kconfig:1:error: recursive dependency detected! fs/sysfs/Kconfig:1: symbol SYSFS is selected by CONFIGFS_FS fs/configfs/Kconfig:1: symbol CONFIGFS_FS is selected by NETCONSOLE_DYNAMIC drivers/net/Kconfig:3390: symbol NETCONSOLE_DYNAMIC depends on SYSFS Signed-off-by: Nicholas A. Bellinger Cc: Joel Becker Cc: Randy Dunlap Cc: Stephen Rothwell Cc: James Bottomley --- drivers/net/Kconfig | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 4c8bfc9..16fe4f9 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -3389,8 +3389,7 @@ config NETCONSOLE config NETCONSOLE_DYNAMIC bool "Dynamic reconfiguration of logging targets" - depends on NETCONSOLE && SYSFS - select CONFIGFS_FS + depends on NETCONSOLE && SYSFS && CONFIGFS_FS help This option enables the ability to dynamically reconfigure target parameters (interface, IP addresses, port numbers, MAC addresses) -- 1.5.6.5