Skip to content

Commit

Permalink
rcu: split 'rcuboost' to each flavor
Browse files Browse the repository at this point in the history
This patch add new 'rcuboost' to each flavor's folder, now we could use:
	'cat /debugfs/rcu/rsp/rcuboost'
to get the selected rsp info.

Signed-off-by: Michael Wang <wangyun@linux.vnet.ibm.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
  • Loading branch information
Michael Wang authored and Paul E. McKenney committed Nov 8, 2012
1 parent c25e557 commit 29c6776
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion kernel/rcutree_trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ static const struct file_operations rcu_node_boost_fops = {
.owner = THIS_MODULE,
.open = rcu_node_boost_open,
.read = seq_read,
.llseek = seq_lseek,
.llseek = no_llseek,
.release = single_release,
};

Expand Down Expand Up @@ -459,6 +459,15 @@ static int __init rcutree_trace_init(void)
rspdir, rsp, &new_rcubarrier_fops);
if (!retval)
goto free_out;

#ifdef CONFIG_RCU_BOOST
if (rsp == &rcu_preempt_state) {
retval = debugfs_create_file("rcuboost", 0444,
rspdir, NULL, &rcu_node_boost_fops);
if (!retval)
goto free_out;
}
#endif
}

retval = debugfs_create_file("rcubarrier", 0444, rcudir,
Expand Down

0 comments on commit 29c6776

Please sign in to comment.