Kernel/VFS - Added warning (instead of LOG) when GetNodeFromInode is unsupported
authorJohn Hodge <[email protected]>
Tue, 30 Jul 2013 02:42:51 +0000 (10:42 +0800)
committerJohn Hodge <[email protected]>
Tue, 30 Jul 2013 02:42:51 +0000 (10:42 +0800)
KernelLand/Kernel/vfs/open.c

index 68c9bd2..f1a16f3 100644 (file)
@@ -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);
        }

UCC git Repository :: git.ucc.asn.au