Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * HFS/HFS+ common definitions, inline functions,
4 * and shared functionality.
5 */
6
7#ifndef _HFS_COMMON_H_
8#define _HFS_COMMON_H_
9
10#ifdef pr_fmt
11#undef pr_fmt
12#endif
13
14#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
16#define hfs_dbg(fmt, ...) \
17 pr_debug("pid %d:%s:%d %s(): " fmt, \
18 current->pid, __FILE__, __LINE__, __func__, ##__VA_ARGS__) \
19
20#endif /* _HFS_COMMON_H_ */