diff options
| author | ChenXiaoSong <chenxiaosong@kylinos.cn> | 2025-12-03 16:44:37 +0800 |
|---|---|---|
| committer | Steve French <stfrench@microsoft.com> | 2025-12-09 21:00:48 -0600 |
| commit | 01ab0d1640e379f0a0d6602250b33ff2b45e9560 (patch) | |
| tree | 8d4978b94626fede793fd5ed60281b3a3f37fad0 | |
| parent | 3d99347a2e1ae60d9368b1d734290bab1acde0ce (diff) | |
smb/server: rename include guard in smb_common.h
Make the include guard more descriptive to avoid conflicts with include
guards that may be used in the future.
Signed-off-by: ChenXiaoSong <chenxiaosong@kylinos.cn>
Acked-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
| -rw-r--r-- | fs/smb/server/smb_common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/smb/server/smb_common.h b/fs/smb/server/smb_common.h index 2baf4aa330eb..43970e99cbce 100644 --- a/fs/smb/server/smb_common.h +++ b/fs/smb/server/smb_common.h @@ -3,8 +3,8 @@ * Copyright (C) 2018 Samsung Electronics Co., Ltd. */ -#ifndef __SMB_COMMON_H__ -#define __SMB_COMMON_H__ +#ifndef __SMB_SERVER_COMMON_H__ +#define __SMB_SERVER_COMMON_H__ #include <linux/kernel.h> @@ -203,4 +203,4 @@ unsigned int ksmbd_server_side_copy_max_chunk_size(void); unsigned int ksmbd_server_side_copy_max_total_size(void); bool is_asterisk(char *p); __le32 smb_map_generic_desired_access(__le32 daccess); -#endif /* __SMB_COMMON_H__ */ +#endif /* __SMB_SERVER_COMMON_H__ */ |
