Changeset 25249
- Timestamp:
- 04/29/08 12:15:35 (7 months ago)
- Location:
- haiku/trunk
- Files:
-
- 5 modified
-
build/config_headers/tracing_config.h (modified) (1 diff)
-
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp (modified) (1 diff)
-
src/add-ons/kernel/file_systems/bfs/Inode.cpp (modified) (2 diffs)
-
src/add-ons/kernel/file_systems/bfs/Jamfile (modified) (2 diffs)
-
src/add-ons/kernel/file_systems/bfs/Journal.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
haiku/trunk/build/config_headers/tracing_config.h
r25235 r25249 19 19 // macros specifying the tracing level for individual components (0 is disabled) 20 20 21 #define BFS_TRACING 0 22 #define BLOCK_CACHE_TRANSACTION_TRACING 0 21 23 #define BMESSAGE_TRACING 0 22 #define BLOCK_CACHE_TRANSACTION_TRACING 023 24 #define KERNEL_HEAP_TRACING 0 24 25 #define PAGE_ALLOCATION_TRACING 0 -
haiku/trunk/src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
r24852 r25249 37 37 // have some real world tests. 38 38 39 #if defined(BFS_TRACING)&& !defined(BFS_SHELL) && !defined(_BOOT_MODE)39 #if BFS_TRACING && !defined(BFS_SHELL) && !defined(_BOOT_MODE) 40 40 namespace BFSBlockTracing { 41 41 -
haiku/trunk/src/add-ons/kernel/file_systems/bfs/Inode.cpp
r25140 r25249 13 13 14 14 15 #if defined(BFS_TRACING)&& !defined(BFS_SHELL) && !defined(_BOOT_MODE)15 #if BFS_TRACING && !defined(BFS_SHELL) && !defined(_BOOT_MODE) 16 16 namespace BFSInodeTracing { 17 17 … … 1734 1734 - data->MaxIndirectRange(); 1735 1735 int32 indirectIndex = start / indirectSize; 1736 int32 index = start/ directSize;1736 int32 index = (start % indirectSize) / directSize; 1737 1737 1738 1738 // distribute the blocks to the array and allocate -
haiku/trunk/src/add-ons/kernel/file_systems/bfs/Jamfile
r23657 r25249 12 12 local defines = 13 13 BFS_DEBUGGER_COMMANDS 14 #BFS_TRACING15 14 #BFS_BIG_ENDIAN_ONLY 16 15 ; … … 48 47 49 48 SEARCH on [ FGristFiles 50 kernel_cpp.cpp 49 kernel_cpp.cpp 51 50 ] = [ FDirName $(HAIKU_TOP) src system kernel util ] ; 52 51 -
haiku/trunk/src/add-ons/kernel/file_systems/bfs/Journal.cpp
r24856 r25249 83 83 84 84 85 #if defined(BFS_TRACING)&& !defined(BFS_SHELL) && !defined(_BOOT_MODE)85 #if BFS_TRACING && !defined(BFS_SHELL) && !defined(_BOOT_MODE) 86 86 namespace BFSJournalTracing { 87 87
