hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
kernel/fs/ocfs2/dlm/dlmdebug.h
....@@ -1,25 +1,10 @@
1
+/* SPDX-License-Identifier: GPL-2.0-or-later */
12 /* -*- mode: c; c-basic-offset: 8; -*-
23 * vim: noexpandtab sw=8 ts=8 sts=0:
34 *
45 * dlmdebug.h
56 *
67 * Copyright (C) 2008 Oracle. All rights reserved.
7
- *
8
- * This program is free software; you can redistribute it and/or
9
- * modify it under the terms of the GNU General Public
10
- * License as published by the Free Software Foundation; either
11
- * version 2 of the License, or (at your option) any later version.
12
- *
13
- * This program is distributed in the hope that it will be useful,
14
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
- * General Public License for more details.
17
- *
18
- * You should have received a copy of the GNU General Public
19
- * License along with this program; if not, write to the
20
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21
- * Boston, MA 021110-1307, USA.
22
- *
238 */
249
2510 #ifndef DLMDEBUG_H
....@@ -29,13 +14,6 @@
2914
3015 #ifdef CONFIG_DEBUG_FS
3116
32
-struct dlm_debug_ctxt {
33
- struct dentry *debug_state_dentry;
34
- struct dentry *debug_lockres_dentry;
35
- struct dentry *debug_mle_dentry;
36
- struct dentry *debug_purgelist_dentry;
37
-};
38
-
3917 struct debug_lockres {
4018 int dl_len;
4119 char *dl_buf;
....@@ -43,34 +21,27 @@
4321 struct dlm_lock_resource *dl_res;
4422 };
4523
46
-int dlm_debug_init(struct dlm_ctxt *dlm);
47
-void dlm_debug_shutdown(struct dlm_ctxt *dlm);
24
+void dlm_debug_init(struct dlm_ctxt *dlm);
4825
49
-int dlm_create_debugfs_subroot(struct dlm_ctxt *dlm);
26
+void dlm_create_debugfs_subroot(struct dlm_ctxt *dlm);
5027 void dlm_destroy_debugfs_subroot(struct dlm_ctxt *dlm);
5128
52
-int dlm_create_debugfs_root(void);
29
+void dlm_create_debugfs_root(void);
5330 void dlm_destroy_debugfs_root(void);
5431
5532 #else
5633
57
-static inline int dlm_debug_init(struct dlm_ctxt *dlm)
58
-{
59
- return 0;
60
-}
61
-static inline void dlm_debug_shutdown(struct dlm_ctxt *dlm)
34
+static inline void dlm_debug_init(struct dlm_ctxt *dlm)
6235 {
6336 }
64
-static inline int dlm_create_debugfs_subroot(struct dlm_ctxt *dlm)
37
+static inline void dlm_create_debugfs_subroot(struct dlm_ctxt *dlm)
6538 {
66
- return 0;
6739 }
6840 static inline void dlm_destroy_debugfs_subroot(struct dlm_ctxt *dlm)
6941 {
7042 }
71
-static inline int dlm_create_debugfs_root(void)
43
+static inline void dlm_create_debugfs_root(void)
7244 {
73
- return 0;
7445 }
7546 static inline void dlm_destroy_debugfs_root(void)
7647 {