Closed witalis closed 13 years ago
This is not an oops message. Probably the ZFS was compiled with the --enable-debug option. This option tracks the memory allocations (see a call to kmem_alloc_debug). If the code is allocating more than 2 continuous pages the function spl_debug_dumpstack() is called. This function dumps the complete call trace.
void kmem_alloc_debug(size_t size, int flags, const char func, int line, int node_alloc, int node) { .... .... if (unlikely((size > PAGE_SIZE * 2) && !(flags & KM_NODEBUG))) { SDEBUG(SD_CONSOLE | SD_WARNING, "large kmem_alloc(%llu, 0x%x) at %s:%d (%lld/%llu)\n", (unsigned long long) size, flags, func, line, kmem_alloc_used_read(), kmem_alloc_max); spl_debug_dumpstack(NULL); } .... .... }
Just to summarize in few words this is harmless. Please let us know if you think otherwise, if you agree I kindly request you to close the bug report.
Thanks a lot for using the ZFS on Linux.
ok, it's rather harmless
first of all thanks for the zfs module, in test environment it seems to be quite stable. after invoking zfs userspace or zfs groupspace i've got real values, but also call trace