Files
mirror_zfs/include/sys/zfs_debug.h
T

137 lines
4.1 KiB
C
Raw Normal View History

2025-01-04 11:04:27 +11:00
// SPDX-License-Identifier: CDDL-1.0
2008-11-20 12:01:55 -08:00
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2022-07-11 23:16:13 +02:00
* or https://opensource.org/licenses/CDDL-1.0.
2008-11-20 12:01:55 -08:00
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
2019-07-16 10:11:49 -07:00
* Copyright (c) 2012, 2019 by Delphix. All rights reserved.
2008-11-20 12:01:55 -08:00
*/
#ifndef _SYS_ZFS_DEBUG_H
#define _SYS_ZFS_DEBUG_H
2013-10-08 22:37:38 -04:00
#ifdef __cplusplus
extern "C" {
#endif
2008-11-20 12:01:55 -08:00
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#include <sys/nvpair.h>
2008-11-20 12:01:55 -08:00
extern int zfs_flags;
2012-01-20 15:02:57 -08:00
extern int zfs_recover;
extern int zfs_free_leak_on_eio;
extern int zfs_dbgmsg_enable;
2008-11-20 12:01:55 -08:00
2017-01-12 12:52:56 -07:00
#define ZFS_DEBUG_DPRINTF (1 << 0)
#define ZFS_DEBUG_DBUF_VERIFY (1 << 1)
#define ZFS_DEBUG_DNODE_VERIFY (1 << 2)
#define ZFS_DEBUG_SNAPNAMES (1 << 3)
#define ZFS_DEBUG_MODIFY (1 << 4)
2017-01-03 15:18:33 -08:00
/* 1<<5 was previously used, try not to reuse */
2017-01-12 12:52:56 -07:00
#define ZFS_DEBUG_ZIO_FREE (1 << 6)
#define ZFS_DEBUG_HISTOGRAM_VERIFY (1 << 7)
#define ZFS_DEBUG_METASLAB_VERIFY (1 << 8)
#define ZFS_DEBUG_SET_ERROR (1 << 9)
#define ZFS_DEBUG_INDIRECT_REMAP (1 << 10)
2019-03-29 09:13:20 -07:00
#define ZFS_DEBUG_TRIM (1 << 11)
2019-07-16 10:11:49 -07:00
#define ZFS_DEBUG_LOG_SPACEMAP (1 << 12)
2021-01-21 15:12:54 -08:00
#define ZFS_DEBUG_METASLAB_ALLOC (1 << 13)
2023-03-10 20:59:53 +01:00
#define ZFS_DEBUG_BRT (1 << 14)
2023-11-08 11:19:41 -07:00
#define ZFS_DEBUG_RAIDZ_RECONSTRUCT (1 << 15)
2025-03-13 10:47:03 -07:00
#define ZFS_DEBUG_DDT (1 << 16)
2008-11-20 12:01:55 -08:00
2019-10-25 13:38:37 -07:00
extern void __set_error(const char *file, const char *func, int line, int err);
2018-10-15 15:14:22 -04:00
extern void __zfs_dbgmsg(char *buf);
extern void __dprintf(boolean_t dprint, const char *file, const char *func,
int line, const char *fmt, ...) __attribute__((format(__printf__, 5, 6)));
2019-01-18 10:16:56 -08:00
/*
* Some general principles for using zfs_dbgmsg():
* 1. We don't want to pollute the log with typically-irrelevant messages,
* so don't print too many messages in the "normal" code path - O(1)
* per txg.
* 2. We want to know for sure what happened, so make the message specific
* (e.g. *which* thing am I operating on).
* 3. Do print a message when something unusual or unexpected happens
* (e.g. error cases).
* 4. Print a message when making user-initiated on-disk changes.
*
* Note that besides principle 1, another reason that we don't want to
* use zfs_dbgmsg in high-frequency routines is the potential impact
* that it can have on performance.
*/
2015-09-01 13:19:10 -07:00
#define zfs_dbgmsg(...) \
if (zfs_dbgmsg_enable) \
2018-10-15 15:14:22 -04:00
__dprintf(B_FALSE, __FILE__, __func__, __LINE__, __VA_ARGS__)
#ifdef ZFS_DEBUG
/*
* To enable this:
*
* $ echo 1 >/sys/module/zfs/parameters/zfs_flags
*/
#define dprintf(...) \
if (zfs_flags & ZFS_DEBUG_DPRINTF) \
2018-10-15 15:14:22 -04:00
__dprintf(B_TRUE, __FILE__, __func__, __LINE__, __VA_ARGS__)
#else
#define dprintf(...) ((void)0)
#endif /* ZFS_DEBUG */
2013-10-08 22:37:38 -04:00
extern void zfs_panic_recover(const char *fmt, ...);
extern void zfs_dbgmsg_init(void);
extern void zfs_dbgmsg_fini(void);
/*
* When printing an nvlist, print one beginning line with the file/func/line
* number and the text "nvlist <var name>:" followed by all the nvlist lines
* without the file/fun/line number. This makes the nvlist lines easy to read.
*/
#define zfs_dbgmsg_nvlist(nv) \
if (zfs_dbgmsg_enable) { \
zfs_dbgmsg("nvlist "#nv":"); \
__zfs_dbgmsg_nvlist(nv); \
}
#define zfs_dbgmsg(...) \
if (zfs_dbgmsg_enable) \
__dprintf(B_FALSE, __FILE__, __func__, __LINE__, __VA_ARGS__)
extern void __zfs_dbgmsg_nvlist(nvlist_t *nv);
2013-10-08 22:37:38 -04:00
#ifndef _KERNEL
extern int dprintf_find_string(const char *string);
2024-05-10 13:58:26 +10:00
extern void zfs_dbgmsg_print(int fd, const char *tag);
2013-10-08 22:37:38 -04:00
#endif
#ifdef __cplusplus
}
#endif
2008-11-20 12:01:55 -08:00
#endif /* _SYS_ZFS_DEBUG_H */