Searched refs:zdm (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_debug.c44 zfs_dbgmsg_t *zdm; local
46 while ((zdm = list_remove_head(&zfs_dbgmsgs)) != NULL) {
47 int size = sizeof (zfs_dbgmsg_t) + strlen(zdm->zdm_msg);
48 kmem_free(zdm, size);
70 zfs_dbgmsg_t *zdm; local
80 zdm = kmem_alloc(sizeof (zfs_dbgmsg_t) + size, KM_SLEEP);
81 zdm->zdm_timestamp = gethrestime_sec();
84 (void) vsnprintf(zdm->zdm_msg, size + 1, fmt, adx);
87 DTRACE_PROBE1(zfs__dbgmsg, char *, zdm->zdm_msg);
90 list_insert_tail(&zfs_dbgmsgs, zdm);
104 zfs_dbgmsg_t *zdm; local
[all...]

Completed in 75 milliseconds