On Sat, Dec 01, 2018 at 04:40:39PM +0800, Wen Yang wrote: > This patch fixes the following checkpatch.pl errors: > > ERROR: spaces required around that ':' (ctx:VxW) > + torture_type, tag, cxt.debug_lock ? " [debug]": "", > ^ > > Signed-off-by: Wen Yang <wen.yan...@zte.com.cn> > CC: Davidlohr Bueso <d...@stgolabs.net> > CC: "Paul E. McKenney" <paul...@linux.ibm.com> > CC: Josh Triplett <j...@joshtriplett.org> > CC: linux-kernel@vger.kernel.org
Adding the current maintainers on CC. Thanx, Paul > --- > kernel/locking/locktorture.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/kernel/locking/locktorture.c b/kernel/locking/locktorture.c > index cd95c01491d8..d1d8356b770a 100644 > --- a/kernel/locking/locktorture.c > +++ b/kernel/locking/locktorture.c > @@ -790,7 +790,7 @@ lock_torture_print_module_parms(struct lock_torture_ops > *cur_ops, > { > pr_alert("%s" TORTURE_FLAG > "--- %s%s: nwriters_stress=%d nreaders_stress=%d > stat_interval=%d verbose=%d shuffle_interval=%d stutter=%d shutdown_secs=%d > onoff_interval=%d onoff_holdoff=%d\n", > - torture_type, tag, cxt.debug_lock ? " [debug]": "", > + torture_type, tag, cxt.debug_lock ? " [debug]" : "", > cxt.nrealwriters_stress, cxt.nrealreaders_stress, > stat_interval, > verbose, shuffle_interval, stutter, shutdown_secs, > onoff_interval, onoff_holdoff); > -- > 2.19.1 >