From 3cfd8472f9097dd9475436a8dd71e9a2517655d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 26 May 2003 22:36:23 +0000 Subject: [PATCH] Fixed the ominous "new_vnode() already exists with different cookie" bug, thanks to Bruno for pointing me in the right direction (that has probably cost him several hours of his life ;-))! Yes, it was that complicated to fix it... git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3345 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/kernel/file_systems/bfs/bfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-ons/kernel/file_systems/bfs/bfs.h b/src/add-ons/kernel/file_systems/bfs/bfs.h index 6a9696948b..13c991a8ac 100644 --- a/src/add-ons/kernel/file_systems/bfs/bfs.h +++ b/src/add-ons/kernel/file_systems/bfs/bfs.h @@ -163,6 +163,7 @@ enum inode_flags INODE_ATTR_INODE = 0x00000004, INODE_LOGGED = 0x00000008, // log changes to the data stream INODE_DELETED = 0x00000010, + INODE_NOT_READY = 0x00000020, // used during Inode construction INODE_LONG_SYMLINK = 0x00000040, // symlink in data stream INODE_PERMANENT_FLAGS = 0x0000ffff, @@ -171,7 +172,6 @@ enum inode_flags INODE_WAS_WRITTEN = 0x00020000, INODE_NO_TRANSACTION = 0x00040000, INODE_DONT_FREE_SPACE = 0x00080000, // only used by the "chkbfs" functionality - INODE_NOT_READY = 0x00100000, // used during construction INODE_CHKBFS_RUNNING = 0x00200000, };