rcu: Remove old debugfs interfaces and also RCU flavor name
This commit removes the old debugfs interfaces, so that the new directory-per-RCU-flavor versions remain. Because the RCU flavor is given by the directory name, there is no need to print it out, so remove the name from the printout. Signed-off-by: Michael Wang <wangyun@linux.vnet.ibm.com> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
This commit is contained in:
parent
a608d84bdb
commit
6ee0886ff6
|
@ -78,32 +78,7 @@ static void r_stop(struct seq_file *m, void *v)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
static int show_rcubarrier(struct seq_file *m, void *unused)
|
static int show_rcubarrier(struct seq_file *m, void *v)
|
||||||
{
|
|
||||||
struct rcu_state *rsp;
|
|
||||||
|
|
||||||
for_each_rcu_flavor(rsp)
|
|
||||||
seq_printf(m, "%s: bcc: %d nbd: %lu\n",
|
|
||||||
rsp->name,
|
|
||||||
atomic_read(&rsp->barrier_cpu_count),
|
|
||||||
rsp->n_barrier_done);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int rcubarrier_open(struct inode *inode, struct file *file)
|
|
||||||
{
|
|
||||||
return single_open(file, show_rcubarrier, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
static const struct file_operations rcubarrier_fops = {
|
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.open = rcubarrier_open,
|
|
||||||
.read = seq_read,
|
|
||||||
.llseek = seq_lseek,
|
|
||||||
.release = single_release,
|
|
||||||
};
|
|
||||||
|
|
||||||
static int new_show_rcubarrier(struct seq_file *m, void *v)
|
|
||||||
{
|
{
|
||||||
struct rcu_state *rsp = (struct rcu_state *)m->private;
|
struct rcu_state *rsp = (struct rcu_state *)m->private;
|
||||||
seq_printf(m, "bcc: %d nbd: %lu\n",
|
seq_printf(m, "bcc: %d nbd: %lu\n",
|
||||||
|
@ -112,14 +87,14 @@ static int new_show_rcubarrier(struct seq_file *m, void *v)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int new_rcubarrier_open(struct inode *inode, struct file *file)
|
static int rcubarrier_open(struct inode *inode, struct file *file)
|
||||||
{
|
{
|
||||||
return single_open(file, new_show_rcubarrier, inode->i_private);
|
return single_open(file, show_rcubarrier, inode->i_private);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct file_operations new_rcubarrier_fops = {
|
static const struct file_operations rcubarrier_fops = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.open = new_rcubarrier_open,
|
.open = rcubarrier_open,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = no_llseek,
|
.llseek = no_llseek,
|
||||||
.release = seq_release,
|
.release = seq_release,
|
||||||
|
@ -245,23 +220,7 @@ static const struct file_operations rcu_node_boost_fops = {
|
||||||
.release = single_release,
|
.release = single_release,
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
#endif /* #ifdef CONFIG_RCU_BOOST */
|
||||||
* Create the rcuboost debugfs entry. Standard error return.
|
|
||||||
*/
|
|
||||||
static int rcu_boost_trace_create_file(struct dentry *rcudir)
|
|
||||||
{
|
|
||||||
return !debugfs_create_file("rcuboost", 0444, rcudir, NULL,
|
|
||||||
&rcu_node_boost_fops);
|
|
||||||
}
|
|
||||||
|
|
||||||
#else /* #ifdef CONFIG_RCU_BOOST */
|
|
||||||
|
|
||||||
static int rcu_boost_trace_create_file(struct dentry *rcudir)
|
|
||||||
{
|
|
||||||
return 0; /* There cannot be an error if we didn't create it! */
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* #else #ifdef CONFIG_RCU_BOOST */
|
|
||||||
|
|
||||||
static void print_one_rcu_state(struct seq_file *m, struct rcu_state *rsp)
|
static void print_one_rcu_state(struct seq_file *m, struct rcu_state *rsp)
|
||||||
{
|
{
|
||||||
|
@ -270,8 +229,8 @@ static void print_one_rcu_state(struct seq_file *m, struct rcu_state *rsp)
|
||||||
struct rcu_node *rnp;
|
struct rcu_node *rnp;
|
||||||
|
|
||||||
gpnum = rsp->gpnum;
|
gpnum = rsp->gpnum;
|
||||||
seq_printf(m, "%s: c=%ld g=%ld s=%d jfq=%ld j=%x ",
|
seq_printf(m, "c=%ld g=%ld s=%d jfq=%ld j=%x ",
|
||||||
rsp->name, ulong2long(rsp->completed), ulong2long(gpnum),
|
ulong2long(rsp->completed), ulong2long(gpnum),
|
||||||
rsp->fqs_state,
|
rsp->fqs_state,
|
||||||
(long)(rsp->jiffies_force_qs - jiffies),
|
(long)(rsp->jiffies_force_qs - jiffies),
|
||||||
(int)(jiffies & 0xffff));
|
(int)(jiffies & 0xffff));
|
||||||
|
@ -294,43 +253,21 @@ static void print_one_rcu_state(struct seq_file *m, struct rcu_state *rsp)
|
||||||
seq_puts(m, "\n");
|
seq_puts(m, "\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
static int show_rcuhier(struct seq_file *m, void *unused)
|
static int show_rcuhier(struct seq_file *m, void *v)
|
||||||
{
|
|
||||||
struct rcu_state *rsp;
|
|
||||||
|
|
||||||
for_each_rcu_flavor(rsp)
|
|
||||||
print_one_rcu_state(m, rsp);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int rcuhier_open(struct inode *inode, struct file *file)
|
|
||||||
{
|
|
||||||
return single_open(file, show_rcuhier, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
static const struct file_operations rcuhier_fops = {
|
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.open = rcuhier_open,
|
|
||||||
.read = seq_read,
|
|
||||||
.llseek = seq_lseek,
|
|
||||||
.release = single_release,
|
|
||||||
};
|
|
||||||
|
|
||||||
static int new_show_rcuhier(struct seq_file *m, void *v)
|
|
||||||
{
|
{
|
||||||
struct rcu_state *rsp = (struct rcu_state *)m->private;
|
struct rcu_state *rsp = (struct rcu_state *)m->private;
|
||||||
print_one_rcu_state(m, rsp);
|
print_one_rcu_state(m, rsp);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int new_rcuhier_open(struct inode *inode, struct file *file)
|
static int rcuhier_open(struct inode *inode, struct file *file)
|
||||||
{
|
{
|
||||||
return single_open(file, new_show_rcuhier, inode->i_private);
|
return single_open(file, show_rcuhier, inode->i_private);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct file_operations new_rcuhier_fops = {
|
static const struct file_operations rcuhier_fops = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.open = new_rcuhier_open,
|
.open = rcuhier_open,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = no_llseek,
|
.llseek = no_llseek,
|
||||||
.release = seq_release,
|
.release = seq_release,
|
||||||
|
@ -354,47 +291,25 @@ static void show_one_rcugp(struct seq_file *m, struct rcu_state *rsp)
|
||||||
gpage = jiffies - rsp->gp_start;
|
gpage = jiffies - rsp->gp_start;
|
||||||
gpmax = rsp->gp_max;
|
gpmax = rsp->gp_max;
|
||||||
raw_spin_unlock_irqrestore(&rnp->lock, flags);
|
raw_spin_unlock_irqrestore(&rnp->lock, flags);
|
||||||
seq_printf(m, "%s: completed=%ld gpnum=%ld age=%ld max=%ld\n",
|
seq_printf(m, "completed=%ld gpnum=%ld age=%ld max=%ld\n",
|
||||||
rsp->name, ulong2long(completed), ulong2long(gpnum), gpage, gpmax);
|
ulong2long(completed), ulong2long(gpnum), gpage, gpmax);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int show_rcugp(struct seq_file *m, void *unused)
|
static int show_rcugp(struct seq_file *m, void *v)
|
||||||
{
|
|
||||||
struct rcu_state *rsp;
|
|
||||||
|
|
||||||
for_each_rcu_flavor(rsp)
|
|
||||||
show_one_rcugp(m, rsp);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int rcugp_open(struct inode *inode, struct file *file)
|
|
||||||
{
|
|
||||||
return single_open(file, show_rcugp, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
static const struct file_operations rcugp_fops = {
|
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.open = rcugp_open,
|
|
||||||
.read = seq_read,
|
|
||||||
.llseek = seq_lseek,
|
|
||||||
.release = single_release,
|
|
||||||
};
|
|
||||||
|
|
||||||
static int new_show_rcugp(struct seq_file *m, void *v)
|
|
||||||
{
|
{
|
||||||
struct rcu_state *rsp = (struct rcu_state *)m->private;
|
struct rcu_state *rsp = (struct rcu_state *)m->private;
|
||||||
show_one_rcugp(m, rsp);
|
show_one_rcugp(m, rsp);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int new_rcugp_open(struct inode *inode, struct file *file)
|
static int rcugp_open(struct inode *inode, struct file *file)
|
||||||
{
|
{
|
||||||
return single_open(file, new_show_rcugp, inode->i_private);
|
return single_open(file, show_rcugp, inode->i_private);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct file_operations new_rcugp_fops = {
|
static const struct file_operations rcugp_fops = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.open = new_rcugp_open,
|
.open = rcugp_open,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = no_llseek,
|
.llseek = no_llseek,
|
||||||
.release = seq_release,
|
.release = seq_release,
|
||||||
|
@ -485,58 +400,41 @@ static int __init rcutree_trace_init(void)
|
||||||
if (!rspdir)
|
if (!rspdir)
|
||||||
goto free_out;
|
goto free_out;
|
||||||
|
|
||||||
retval = debugfs_create_file("rcudata", 0444,
|
retval = debugfs_create_file("rcudata", 0444,
|
||||||
rspdir, rsp, &rcudata_fops);
|
rspdir, rsp, &rcudata_fops);
|
||||||
if (!retval)
|
if (!retval)
|
||||||
goto free_out;
|
goto free_out;
|
||||||
|
|
||||||
retval = debugfs_create_file("rcu_pending", 0444,
|
retval = debugfs_create_file("rcu_pending", 0444,
|
||||||
rspdir, rsp, &rcu_pending_fops);
|
rspdir, rsp, &rcu_pending_fops);
|
||||||
if (!retval)
|
if (!retval)
|
||||||
goto free_out;
|
goto free_out;
|
||||||
|
|
||||||
retval = debugfs_create_file("rcubarrier", 0444,
|
retval = debugfs_create_file("rcubarrier", 0444,
|
||||||
rspdir, rsp, &new_rcubarrier_fops);
|
rspdir, rsp, &rcubarrier_fops);
|
||||||
if (!retval)
|
if (!retval)
|
||||||
goto free_out;
|
goto free_out;
|
||||||
|
|
||||||
#ifdef CONFIG_RCU_BOOST
|
#ifdef CONFIG_RCU_BOOST
|
||||||
if (rsp == &rcu_preempt_state) {
|
if (rsp == &rcu_preempt_state) {
|
||||||
retval = debugfs_create_file("rcuboost", 0444,
|
retval = debugfs_create_file("rcuboost", 0444,
|
||||||
rspdir, NULL, &rcu_node_boost_fops);
|
rspdir, NULL, &rcu_node_boost_fops);
|
||||||
if (!retval)
|
if (!retval)
|
||||||
goto free_out;
|
goto free_out;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
retval = debugfs_create_file("rcugp", 0444,
|
retval = debugfs_create_file("rcugp", 0444,
|
||||||
rspdir, rsp, &new_rcugp_fops);
|
rspdir, rsp, &rcugp_fops);
|
||||||
if (!retval)
|
if (!retval)
|
||||||
goto free_out;
|
goto free_out;
|
||||||
|
|
||||||
retval = debugfs_create_file("rcuhier", 0444,
|
retval = debugfs_create_file("rcuhier", 0444,
|
||||||
rspdir, rsp, &new_rcuhier_fops);
|
rspdir, rsp, &rcuhier_fops);
|
||||||
if (!retval)
|
if (!retval)
|
||||||
goto free_out;
|
goto free_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
retval = debugfs_create_file("rcubarrier", 0444, rcudir,
|
|
||||||
NULL, &rcubarrier_fops);
|
|
||||||
if (!retval)
|
|
||||||
goto free_out;
|
|
||||||
|
|
||||||
if (rcu_boost_trace_create_file(rcudir))
|
|
||||||
goto free_out;
|
|
||||||
|
|
||||||
retval = debugfs_create_file("rcugp", 0444, rcudir, NULL, &rcugp_fops);
|
|
||||||
if (!retval)
|
|
||||||
goto free_out;
|
|
||||||
|
|
||||||
retval = debugfs_create_file("rcuhier", 0444, rcudir,
|
|
||||||
NULL, &rcuhier_fops);
|
|
||||||
if (!retval)
|
|
||||||
goto free_out;
|
|
||||||
|
|
||||||
retval = debugfs_create_file("rcutorture", 0444, rcudir,
|
retval = debugfs_create_file("rcutorture", 0444, rcudir,
|
||||||
NULL, &rcutorture_fops);
|
NULL, &rcutorture_fops);
|
||||||
if (!retval)
|
if (!retval)
|
||||||
|
|
Loading…
Reference in New Issue