From d9b454656314400cf673ac7cb2923ac0f2bbd676 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Tue, 30 Jul 2013 10:42:51 +0800 Subject: [PATCH] Kernel/VFS - Added warning (instead of LOG) when GetNodeFromInode is unsupported --- KernelLand/Kernel/vfs/open.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/KernelLand/Kernel/vfs/open.c b/KernelLand/Kernel/vfs/open.c index 68c9bd2e..f1a16f3f 100644 --- a/KernelLand/Kernel/vfs/open.c +++ b/KernelLand/Kernel/vfs/open.c @@ -706,7 +706,8 @@ int VFS_OpenInode(Uint32 Mount, Uint64 Inode, int Mode) // Does the filesystem support this? if( !mnt->Filesystem->GetNodeFromINode ) { - LOG("Filesystem does not support inode accesses"); + Log_Notice("VFS", "Filesystem '%s' does not support inode accesses", + mnt->Filesystem->Name); errno = ENOENT; LEAVE_RET('i', -1); } -- 2.20.1