From: John Hodge Date: Tue, 30 Jul 2013 02:42:51 +0000 (+0800) Subject: Kernel/VFS - Added warning (instead of LOG) when GetNodeFromInode is unsupported X-Git-Tag: rel0.15~309 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=d9b454656314400cf673ac7cb2923ac0f2bbd676;p=tpg%2Facess2.git Kernel/VFS - Added warning (instead of LOG) when GetNodeFromInode is unsupported --- 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); }