aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rcu/tree_trace.c
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2015-09-27 19:14:57 -0400
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>2015-12-04 15:27:29 -0500
commit47dbc90663f697a4515a8dd5c99ae43dba108cb4 (patch)
treebe9b2871cb8cae98f5e745e4ec1220f012b9ed87 /kernel/rcu/tree_trace.c
parent3dc5dbe9a1b815b659a6b04540fc6fd4b4e3831b (diff)
kernel: Make rcu/tree_trace.c explicitly non-modular
The Kconfig currently controlling compilation of this code is: init/Kconfig:config TREE_RCU_TRACE init/Kconfig: def_bool RCU_TRACE && ( TREE_RCU || PREEMPT_RCU ) ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essentially orphaned, so that when reading the file there is no doubt it is builtin-only. Since module_init translates to device_initcall in the non-modular case, the init ordering remains unchanged with this commit. We could consider moving this to an earlier initcall if desired. We don't replace module.h with init.h since the file already has that. We also delete the moduleparam.h include that is left over from commit 64db4cfff99c04cd5f550357edcc8780f96b54a2 (""Tree RCU": scalable classic RCU implementation") since it is not needed here either. We morph some tags like MODULE_AUTHOR into the comments at the top of the file for documentation purposes. Cc: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> Cc: Josh Triplett <josh@joshtriplett.org> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Cc: Lai Jiangshan <jiangshanlai@gmail.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/rcu/tree_trace.c')
-rw-r--r--kernel/rcu/tree_trace.c19
1 files changed, 3 insertions, 16 deletions
diff --git a/kernel/rcu/tree_trace.c b/kernel/rcu/tree_trace.c
index 8efaba870d96..82aca98b18f8 100644
--- a/kernel/rcu/tree_trace.c
+++ b/kernel/rcu/tree_trace.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Read-Copy Update tracing for classic implementation 2 * Read-Copy Update tracing for hierarchical implementation.
3 * 3 *
4 * This program is free software; you can redistribute it and/or modify 4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by 5 * it under the terms of the GNU General Public License as published by
@@ -16,6 +16,7 @@
16 * http://www.gnu.org/licenses/gpl-2.0.html. 16 * http://www.gnu.org/licenses/gpl-2.0.html.
17 * 17 *
18 * Copyright IBM Corporation, 2008 18 * Copyright IBM Corporation, 2008
19 * Author: Paul E. McKenney
19 * 20 *
20 * Papers: http://www.rdrop.com/users/paulmck/RCU 21 * Papers: http://www.rdrop.com/users/paulmck/RCU
21 * 22 *
@@ -33,9 +34,7 @@
33#include <linux/sched.h> 34#include <linux/sched.h>
34#include <linux/atomic.h> 35#include <linux/atomic.h>
35#include <linux/bitops.h> 36#include <linux/bitops.h>
36#include <linux/module.h>
37#include <linux/completion.h> 37#include <linux/completion.h>
38#include <linux/moduleparam.h>
39#include <linux/percpu.h> 38#include <linux/percpu.h>
40#include <linux/notifier.h> 39#include <linux/notifier.h>
41#include <linux/cpu.h> 40#include <linux/cpu.h>
@@ -487,16 +486,4 @@ free_out:
487 debugfs_remove_recursive(rcudir); 486 debugfs_remove_recursive(rcudir);
488 return 1; 487 return 1;
489} 488}
490 489device_initcall(rcutree_trace_init);
491static void __exit rcutree_trace_cleanup(void)
492{
493 debugfs_remove_recursive(rcudir);
494}
495
496
497module_init(rcutree_trace_init);
498module_exit(rcutree_trace_cleanup);
499
500MODULE_AUTHOR("Paul E. McKenney");
501MODULE_DESCRIPTION("Read-Copy Update tracing for hierarchical implementation");
502MODULE_LICENSE("GPL");