Files
cubelinux-kernel/include/linux/vfsdebug.h
T
Greg Kroah-Hartman 598cf27219 Linux 6.19.3
Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com>
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com>
Tested-by: Peter Schneider <pschneider1968@googlemail.com>
Tested-by: Jon Hunter <jonathanh@nvidia.com>
Tested-by: Salvatore Bonaccorso <carnil@debian.org>
Tested-by: Brett A C Sheffield <bacs@librecast.net>
Tested-by: Mark Brown <broonie@kernel.org>
Tested-by: Luna Jernberg <droidbittin@gmail.com>
Tested-by: Ronald Warsow <rwarsow@gmx.de>
Tested-by: Justin M. Forbes <jforbes@fedoraproject.org>
Tested-by: Ron Economos <re@w6rz.net>
Tested-by: Miguel Ojeda <ojeda@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2026-02-19 16:33:27 +01:00

46 lines
1.3 KiB
C

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef LINUX_VFS_DEBUG_H
#define LINUX_VFS_DEBUG_H 1
#include <linux/bug.h>
struct inode;
#ifdef CONFIG_DEBUG_VFS
void dump_inode(struct inode *inode, const char *reason);
#define VFS_BUG_ON(cond) BUG_ON(cond)
#define VFS_WARN_ON(cond) (void)WARN_ON(cond)
#define VFS_WARN_ON_ONCE(cond) (void)WARN_ON_ONCE(cond)
#define VFS_WARN_ONCE(cond, format...) (void)WARN_ONCE(cond, format)
#define VFS_WARN(cond, format...) (void)WARN(cond, format)
#define VFS_BUG_ON_INODE(cond, inode) ({ \
if (unlikely(!!(cond))) { \
dump_inode(inode, "VFS_BUG_ON_INODE(" #cond")");\
BUG_ON(1); \
} \
})
#define VFS_WARN_ON_INODE(cond, inode) ({ \
int __ret_warn = !!(cond); \
\
if (unlikely(__ret_warn)) { \
dump_inode(inode, "VFS_WARN_ON_INODE(" #cond")");\
WARN_ON(1); \
} \
unlikely(__ret_warn); \
})
#else
#define VFS_BUG_ON(cond) BUILD_BUG_ON_INVALID(cond)
#define VFS_WARN_ON(cond) BUILD_BUG_ON_INVALID(cond)
#define VFS_WARN_ON_ONCE(cond) BUILD_BUG_ON_INVALID(cond)
#define VFS_WARN_ONCE(cond, format...) BUILD_BUG_ON_INVALID(cond)
#define VFS_WARN(cond, format...) BUILD_BUG_ON_INVALID(cond)
#define VFS_BUG_ON_INODE(cond, inode) VFS_BUG_ON(cond)
#define VFS_WARN_ON_INODE(cond, inode) BUILD_BUG_ON_INVALID(cond)
#endif /* CONFIG_DEBUG_VFS */
#endif