From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: [PATCH] FUSE depends on BLOCK Date: Thu, 16 Nov 2006 21:38:06 -0800 Message-ID: <20061116213806.4b11c49b.randy.dunlap@oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: miklos@szeredi.hu, akpm Return-path: Received: from agminet01.oracle.com ([141.146.126.228]:54399 "EHLO agminet01.oracle.com") by vger.kernel.org with ESMTP id S1424772AbWKQFmO (ORCPT ); Fri, 17 Nov 2006 00:42:14 -0500 To: linux-fsdevel@vger.kernel.org Sender: linux-fsdevel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org From: Randy Dunlap Should FUSE depend on BLOCK? Without that and with BLOCK=n, I get: inode.c:(.text+0x3acc5): undefined reference to `sb_set_blocksize' inode.c:(.text+0x3a393): undefined reference to `get_sb_bdev' fs/built-in.o:(.data+0xd718): undefined reference to `kill_block_super Signed-off-by: Randy Dunlap --- fs/Kconfig | 1 + 1 file changed, 1 insertion(+) --- linux-2619-rc5mm2.orig/fs/Kconfig +++ linux-2619-rc5mm2/fs/Kconfig @@ -622,6 +622,7 @@ config AUTOFS4_FS config FUSE_FS tristate "Filesystem in Userspace support" + depends on BLOCK help With FUSE it is possible to implement a fully functional filesystem in a userspace program. ---