From a31acb462d70aea9bbd5f0c96f7df109e2dde5aa Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Thu, 9 Feb 2012 16:33:55 -0800 Subject: [PATCH] Use spl_debug_* helpers When configuring the spl debug log support use the provided wrapper functions. This ensures that if --disable-debug-log was used when buiding the spl the functions will have no effect. Signed-off-by: Brian Behlendorf --- module/zfs/zfs_debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/zfs/zfs_debug.c b/module/zfs/zfs_debug.c index f4b5e6fa15..e56177815b 100644 --- a/module/zfs/zfs_debug.c +++ b/module/zfs/zfs_debug.c @@ -59,8 +59,8 @@ zfs_dbgmsg_init(void) if (zfs_flags == 0) { #if defined(_KERNEL) zfs_flags = ZFS_DEBUG_DPRINTF; - spl_debug_mask |= SD_DPRINTF; - spl_debug_subsys |= SS_USER1; + spl_debug_set_mask(spl_debug_get_mask() | SD_DPRINTF); + spl_debug_set_subsys(spl_debug_get_subsys() | SS_USER1); #else zfs_flags = ~ZFS_DEBUG_DPRINTF; #endif /* _KERNEL */