Symbol: fssh_panic
headers/private/fs_shell/fssh_api_wrapper.h
1008
#define panic fssh_panic
headers/private/fs_shell/fssh_kernel_export.h
35
extern void fssh_panic(const char *format, ...)
src/tools/fs_shell/block_cache.cpp
1052
fssh_panic("cache_end_transaction(): invalid transaction ID\n");
src/tools/fs_shell/block_cache.cpp
1114
fssh_panic("cache_abort_transaction(): invalid transaction ID\n");
src/tools/fs_shell/block_cache.cpp
1166
fssh_panic("cache_detach_sub_transaction(): invalid transaction ID\n");
src/tools/fs_shell/block_cache.cpp
1259
fssh_panic("cache_abort_sub_transaction(): invalid transaction ID\n");
src/tools/fs_shell/block_cache.cpp
1312
fssh_panic("cache_start_sub_transaction(): invalid transaction ID %d\n", (int)id);
src/tools/fs_shell/block_cache.cpp
1573
fssh_panic("block_cache_sync_etc: invalid block number %" FSSH_B_PRIdOFF
src/tools/fs_shell/block_cache.cpp
1620
fssh_panic("Discarded block %" FSSH_B_PRIdOFF " has already "
src/tools/fs_shell/block_cache.cpp
1639
fssh_panic("tried to make block writable on a read-only cache!");
src/tools/fs_shell/block_cache.cpp
1664
fssh_panic("tried to get writable block on a read-only cache!");
src/tools/fs_shell/block_cache.cpp
1695
fssh_panic("tried to get empty writable block on a read-only cache!");
src/tools/fs_shell/block_cache.cpp
1767
fssh_panic("block_cache_set_dirty(): not yet implemented that way!\n");
src/tools/fs_shell/block_cache.cpp
40
#define FATAL(x) fssh_panic x
src/tools/fs_shell/block_cache.cpp
540
fssh_panic("block_cache::FreeBlock(): %" FSSH_B_PRIdOFF
src/tools/fs_shell/block_cache.cpp
670
fssh_panic("block_cache: supposed to be clean block was changed!\n");
src/tools/fs_shell/block_cache.cpp
700
fssh_panic("put_cached_block: invalid block number %" FSSH_B_PRIdOFF
src/tools/fs_shell/block_cache.cpp
724
fssh_panic("get_cached_block: invalid block number %" FSSH_B_PRIdOFF
src/tools/fs_shell/block_cache.cpp
783
fssh_panic("get_writable_cached_block: invalid block number %"
src/tools/fs_shell/block_cache.cpp
815
fssh_panic("get_writable_cached_block(): asked to get busy writable block (transaction %d)\n", (int)transaction->id);
src/tools/fs_shell/block_cache.cpp
823
fssh_panic("get_writable_cached_block(): invalid transaction %d!\n",
src/tools/fs_shell/block_cache.cpp
829
fssh_panic("get_writable_cached_block(): transaction already done!\n");
src/tools/fs_shell/block_cache.cpp
981
fssh_panic("last transaction (%d) still open!\n",
src/tools/fs_shell/file_cache.cpp
149
fssh_panic("cache_io() called with NULL ref!\n");
src/tools/fs_shell/file_cache.cpp
288
fssh_panic("fssh_file_cache_enable() called");
src/tools/fs_shell/file_cache.cpp
295
fssh_panic("fssh_file_cache_disable() called");
src/tools/fs_shell/hash.cpp
160
fssh_panic("hash_remove_current() called too early.");
src/tools/fs_shell/kernel_export.cpp
88
fssh_panic("%s", message);
src/tools/fs_shell/lock.cpp
106
fssh_panic("recursive_lock %p unlocked by non-holder thread!\n", lock);
src/tools/fs_shell/lock.cpp
120
fssh_panic("invalid recursion level for lock transfer!");
src/tools/fs_shell/lock.cpp
142
fssh_panic("could not create mutex");
src/tools/fs_shell/lock.cpp
178
fssh_panic("mutex_lock failure: mutex %p (sem = 0x%x) acquired twice by thread 0x%x\n", mutex, (int)mutex->sem, (int)me);
src/tools/fs_shell/lock.cpp
191
fssh_panic("mutex_unlock failure: thread 0x%x is trying to release mutex %p (current holder 0x%x)\n",
src/tools/fs_shell/lock.cpp
224
fssh_panic("could not create r/w lock");
src/tools/fs_shell/lock.cpp
45
fssh_panic("could not create recursive lock");
src/tools/fs_shell/module.cpp
244
fssh_panic("Trying to unload module %s which is initializing\n", module->name);
src/tools/fs_shell/module.cpp
248
fssh_panic("Trying to unload module %s which is un-initializing\n", module->name);
src/tools/fs_shell/vfs.cpp
1076
fssh_panic("lookup_dir_entry(): could not lookup vnode (mountid %d "
src/tools/fs_shell/vfs.cpp
1711
fssh_panic("get_new_fd() called with unknown type %d\n", type);
src/tools/fs_shell/vfs.cpp
1904
fssh_panic("vnode %d:%" FSSH_B_PRIdINO " already exists (node = %p, "
src/tools/fs_shell/vfs.cpp
2003
fssh_panic("get_vnode(): Failed to get super node for vnode %p, "
src/tools/fs_shell/vfs.cpp
2975
fssh_panic("vfs_init: error creating vnode hash table\n");
src/tools/fs_shell/vfs.cpp
2982
fssh_panic("vfs_init: error creating mounts hash table\n");
src/tools/fs_shell/vfs.cpp
4740
fssh_panic("fs_mount: file system does not own its root node!\n");
src/tools/fs_shell/vfs.cpp
4799
fssh_panic("vfs_unmount: find_mount() failed on root vnode @%p of mount\n", vnode);
src/tools/fs_shell/vfs.cpp
687
fssh_panic("dec_vnode_ref_count: called on busy vnode %p\n", vnode);
src/tools/fs_shell/vfs.cpp
788
fssh_panic("vnode %d:%" FSSH_B_PRIdINO " is not becoming unbusy!\n",
src/tools/fs_shell/vfs_request_io.cpp
17
fssh_panic("fssh_do_fd_io() not yet implemented");
src/tools/fs_shell/vfs_request_io.cpp
27
fssh_panic("fssh_do_iterative_fd_io() not yet implemented");