TASKQ_DYNAMIC not yet support, do not create the global taskq with that flag or we crash with debug enabled. Also don't bother dumping debug when debugging is diabled, it's pointless

This commit is contained in:
Brian Behlendorf 2009-01-13 11:43:05 -08:00
parent b871b8cdef
commit b172b6dfde
2 changed files with 3 additions and 1 deletions

View File

@ -1118,8 +1118,10 @@ void spl_debug_bug(char *file, const char *func, const int line, int flags)
if (spl_debug_panic_on_bug)
spl_panic_in_progress = 1;
#ifdef DEBUG
spl_debug_dumpstack(NULL);
spl_debug_dumplog(flags);
#endif
if (spl_debug_panic_on_bug)
panic("SBUG");

View File

@ -475,7 +475,7 @@ spl_taskq_init(void)
ENTRY;
system_taskq = taskq_create("system_taskq", 64, minclsyspri, 4, 512,
TASKQ_DYNAMIC | TASKQ_PREPOPULATE);
TASKQ_PREPOPULATE);
if (system_taskq == NULL)
RETURN(1);