Kernel/VFS - Added warning (instead of LOG) when GetNodeFromInode is unsupported
[tpg/acess2.git] / 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