On Mon, Oct 29, 2012 at 11:02:13AM +0800, Michael Wang wrote: > This patch fix the code style issue caused by: > > commit 622afdb3bd6288837a37bac137dfeff4e771798d > "rcu: Optimize the 'rcudata' for RCU trace"
Queued, thank you Michael. Thanx, Paul > Signed-off-by: Michael Wang <wang...@linux.vnet.ibm.com> > Reported-by: Fengguang Wu <fengguang...@intel.com> > --- > kernel/rcutree_trace.c | 60 > ++++++++++++++++++++++++------------------------ > 1 files changed, 30 insertions(+), 30 deletions(-) > > diff --git a/kernel/rcutree_trace.c b/kernel/rcutree_trace.c > index 73abfb0..e84679c 100644 > --- a/kernel/rcutree_trace.c > +++ b/kernel/rcutree_trace.c > @@ -436,44 +436,44 @@ static int __init rcutree_trace_init(void) > if (!rspdir) > goto free_out; > > - retval = debugfs_create_file("rcudata", 0444, > - rspdir, rsp, &rcudata_fops); > - if (!retval) > - goto free_out; > + retval = debugfs_create_file("rcudata", 0444, > + rspdir, rsp, &rcudata_fops); > + if (!retval) > + goto free_out; > > - retval = debugfs_create_file("rcuexp", 0444, > - rspdir, rsp, &rcuexp_fops); > - if (!retval) > - goto free_out; > + retval = debugfs_create_file("rcuexp", 0444, > + rspdir, rsp, &rcuexp_fops); > + if (!retval) > + goto free_out; > > - retval = debugfs_create_file("rcu_pending", 0444, > - rspdir, rsp, &rcu_pending_fops); > - if (!retval) > - goto free_out; > + retval = debugfs_create_file("rcu_pending", 0444, > + rspdir, rsp, &rcu_pending_fops); > + if (!retval) > + goto free_out; > > - retval = debugfs_create_file("rcubarrier", 0444, > - rspdir, rsp, &rcubarrier_fops); > - if (!retval) > - goto free_out; > + retval = debugfs_create_file("rcubarrier", 0444, > + rspdir, rsp, &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("rcugp", 0444, > - rspdir, rsp, &rcugp_fops); > + 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("rcuhier", 0444, > - rspdir, rsp, &rcuhier_fops); > - if (!retval) > - goto free_out; > + retval = debugfs_create_file("rcugp", 0444, > + rspdir, rsp, &rcugp_fops); > + if (!retval) > + goto free_out; > + > + retval = debugfs_create_file("rcuhier", 0444, > + rspdir, rsp, &rcuhier_fops); > + if (!retval) > + goto free_out; > } > > retval = debugfs_create_file("rcutorture", 0444, rcudir, > -- > 1.7.4.1 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/