glob.h 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 *   Copyright (C) 2016 Namjae Jeon <linkinjeon@kernel.org>
 *   Copyright (C) 2018 Samsung Electronics Co., Ltd.
 */

#ifndef __KSMBD_GLOB_H
#define __KSMBD_GLOB_H

#include <linux/ctype.h>

#include "unicode.h"
#include "vfs_cache.h"

#define KSMBD_VERSION	"3.1.9"

extern int ksmbd_debug_types;

19 20 21 22 23 24 25
#define KSMBD_DEBUG_SMB		BIT(0)
#define KSMBD_DEBUG_AUTH	BIT(1)
#define KSMBD_DEBUG_VFS		BIT(2)
#define KSMBD_DEBUG_OPLOCK      BIT(3)
#define KSMBD_DEBUG_IPC         BIT(4)
#define KSMBD_DEBUG_CONN        BIT(5)
#define KSMBD_DEBUG_RDMA        BIT(6)
26 27 28 29 30
#define KSMBD_DEBUG_ALL         (KSMBD_DEBUG_SMB | KSMBD_DEBUG_AUTH |	\
				KSMBD_DEBUG_VFS | KSMBD_DEBUG_OPLOCK |	\
				KSMBD_DEBUG_IPC | KSMBD_DEBUG_CONN |	\
				KSMBD_DEBUG_RDMA)

N
Namjae Jeon 已提交
31 32 33 34
#ifdef pr_fmt
#undef pr_fmt
#endif

35
#ifdef SUBMOD_NAME
N
Namjae Jeon 已提交
36
#define pr_fmt(fmt)	"ksmbd: " SUBMOD_NAME ": " fmt
37
#else
N
Namjae Jeon 已提交
38
#define pr_fmt(fmt)	"ksmbd: " fmt
39 40 41 42 43
#endif

#define ksmbd_debug(type, fmt, ...)				\
	do {							\
		if (ksmbd_debug_types & KSMBD_DEBUG_##type)	\
N
Namjae Jeon 已提交
44
			pr_info(fmt, ##__VA_ARGS__);		\
45 46 47 48 49
	} while (0)

#define UNICODE_LEN(x)		((x) * 2)

#endif /* __KSMBD_GLOB_H */