All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yury Norov <yury.norov@gmail.com>
To: kbuild-all@lists.01.org
Subject: Re: [norov:bitmap-tmp 7/8] arch/powerpc/xmon/xmon.c:472:64: error: expected ')' before 'return'
Date: Thu, 25 Nov 2021 18:54:27 -0800	[thread overview]
Message-ID: <20211126025427.GA149004@lapt> (raw)
In-Reply-To: <81cbcf8c782cea2261af55965718a0d8ebb3b21f.camel@perches.com>

[-- Attachment #1: Type: text/plain, Size: 3196 bytes --]

On Thu, Nov 25, 2021 at 11:43:48AM -0800, Joe Perches wrote:
> On Fri, 2021-11-26 at 03:17 +0800, kernel test robot wrote:
> > tree:   https://github.com/norov/linux bitmap-tmp
> > head:   75ee333c81c999b29a49810611fb160cec32217d
> > commit: 29f49f10b3fbef5a88db0a7e370984297616f0fa [7/8] lib/cpumask: replace cpumask_weight with cpumask_{empty,gt,le,eq}
> > config: powerpc-allyesconfig (https://download.01.org/0day-ci/archive/20211126/202111260340.kCOW9xsR-lkp(a)intel.com/config)
> > compiler: powerpc-linux-gcc (GCC) 11.2.0
> > reproduce (this is a W=1 build):
> >         wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> >         chmod +x ~/bin/make.cross
> >         # https://github.com/norov/linux/commit/29f49f10b3fbef5a88db0a7e370984297616f0fa
> >         git remote add norov https://github.com/norov/linux
> >         git fetch --no-tags norov bitmap-tmp
> >         git checkout 29f49f10b3fbef5a88db0a7e370984297616f0fa
> >         # save the config file to linux build tree
> >         mkdir build_dir
> >         COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=powerpc SHELL=/bin/bash
> > 
> > If you fix the issue, kindly add following tag as appropriate
> > Reported-by: kernel test robot <lkp@intel.com>
> > 
> > All errors (new ones prefixed by >>):
> > 
> >    arch/powerpc/xmon/xmon.c: In function 'wait_for_other_cpus':
> > > > arch/powerpc/xmon/xmon.c:472:64: error: expected ')' before 'return'
> >      472 |                 if (cpumask_weight_gt(&cpus_in_xmon, ncpus - 1)
> >          |                    ~                                           ^
> >          |                                                                )
> >      473 |                         return true;
> >          |                         ~~~~~~                                  
> > > > arch/powerpc/xmon/xmon.c:476:9: error: expected expression before '}' token
> >      476 |         }
> >          |         ^
> 
> It's always good to compile test patches before submitting them and:

As you can check, I didn't submit this patch. I pushed a series to my github,
and Intel 0-day bot tested it, and apparently found missed ')'.

I love this service, thank you Intel.
  
> > vim +472 arch/powerpc/xmon/xmon.c
> > 
> >    465	
> >    466	static bool wait_for_other_cpus(int ncpus)
> >    467	{
> >    468		unsigned long timeout;
> >    469	
> >    470		/* We wait for 2s, which is a metric "little while" */
> >    471		for (timeout = 20000; timeout != 0; --timeout) {
> >  > 472			if (cpumask_weight_gt(&cpus_in_xmon, ncpus - 1)
> >    473				return true;
> >    474			udelay(100);
> 
> unrelated trivia:
> 
> It seeems this loop could consume a lot of cpu/power.
> 
> Could this use usleep_range() or maybe something else that doesn't allow
> rescheduling on another cpu?
> 
> Maybe it should be something like
> 
> 	unsigned long timeout = jiffies + msecs_to_jiffies(2000);
> 
> 	while (time_before(jiffies, timeout)) {
> 		if (cpumask_weight_gt(&cpus_in_xmon, ncpus - 1)
> 				return true;
> 		usleep_range(100, 200);
> 	}
> 

WARNING: multiple messages have this Message-ID (diff)
From: Yury Norov <yury.norov@gmail.com>
To: Joe Perches <joe@perches.com>
Cc: kernel test robot <lkp@intel.com>,
	kbuild-all@lists.01.org, linux-kernel@vger.kernel.org
Subject: Re: [norov:bitmap-tmp 7/8] arch/powerpc/xmon/xmon.c:472:64: error: expected ')' before 'return'
Date: Thu, 25 Nov 2021 18:54:27 -0800	[thread overview]
Message-ID: <20211126025427.GA149004@lapt> (raw)
In-Reply-To: <81cbcf8c782cea2261af55965718a0d8ebb3b21f.camel@perches.com>

On Thu, Nov 25, 2021 at 11:43:48AM -0800, Joe Perches wrote:
> On Fri, 2021-11-26 at 03:17 +0800, kernel test robot wrote:
> > tree:   https://github.com/norov/linux bitmap-tmp
> > head:   75ee333c81c999b29a49810611fb160cec32217d
> > commit: 29f49f10b3fbef5a88db0a7e370984297616f0fa [7/8] lib/cpumask: replace cpumask_weight with cpumask_{empty,gt,le,eq}
> > config: powerpc-allyesconfig (https://download.01.org/0day-ci/archive/20211126/202111260340.kCOW9xsR-lkp@intel.com/config)
> > compiler: powerpc-linux-gcc (GCC) 11.2.0
> > reproduce (this is a W=1 build):
> >         wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> >         chmod +x ~/bin/make.cross
> >         # https://github.com/norov/linux/commit/29f49f10b3fbef5a88db0a7e370984297616f0fa
> >         git remote add norov https://github.com/norov/linux
> >         git fetch --no-tags norov bitmap-tmp
> >         git checkout 29f49f10b3fbef5a88db0a7e370984297616f0fa
> >         # save the config file to linux build tree
> >         mkdir build_dir
> >         COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=powerpc SHELL=/bin/bash
> > 
> > If you fix the issue, kindly add following tag as appropriate
> > Reported-by: kernel test robot <lkp@intel.com>
> > 
> > All errors (new ones prefixed by >>):
> > 
> >    arch/powerpc/xmon/xmon.c: In function 'wait_for_other_cpus':
> > > > arch/powerpc/xmon/xmon.c:472:64: error: expected ')' before 'return'
> >      472 |                 if (cpumask_weight_gt(&cpus_in_xmon, ncpus - 1)
> >          |                    ~                                           ^
> >          |                                                                )
> >      473 |                         return true;
> >          |                         ~~~~~~                                  
> > > > arch/powerpc/xmon/xmon.c:476:9: error: expected expression before '}' token
> >      476 |         }
> >          |         ^
> 
> It's always good to compile test patches before submitting them and:

As you can check, I didn't submit this patch. I pushed a series to my github,
and Intel 0-day bot tested it, and apparently found missed ')'.

I love this service, thank you Intel.
  
> > vim +472 arch/powerpc/xmon/xmon.c
> > 
> >    465	
> >    466	static bool wait_for_other_cpus(int ncpus)
> >    467	{
> >    468		unsigned long timeout;
> >    469	
> >    470		/* We wait for 2s, which is a metric "little while" */
> >    471		for (timeout = 20000; timeout != 0; --timeout) {
> >  > 472			if (cpumask_weight_gt(&cpus_in_xmon, ncpus - 1)
> >    473				return true;
> >    474			udelay(100);
> 
> unrelated trivia:
> 
> It seeems this loop could consume a lot of cpu/power.
> 
> Could this use usleep_range() or maybe something else that doesn't allow
> rescheduling on another cpu?
> 
> Maybe it should be something like
> 
> 	unsigned long timeout = jiffies + msecs_to_jiffies(2000);
> 
> 	while (time_before(jiffies, timeout)) {
> 		if (cpumask_weight_gt(&cpus_in_xmon, ncpus - 1)
> 				return true;
> 		usleep_range(100, 200);
> 	}
> 

  reply	other threads:[~2021-11-26  2:54 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-25 19:17 [norov:bitmap-tmp 7/8] arch/powerpc/xmon/xmon.c:472:64: error: expected ')' before 'return' kernel test robot
2021-11-25 19:17 ` kernel test robot
2021-11-25 19:43 ` Joe Perches
2021-11-25 19:43   ` Joe Perches
2021-11-26  2:54   ` Yury Norov [this message]
2021-11-26  2:54     ` Yury Norov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211126025427.GA149004@lapt \
    --to=yury.norov@gmail.com \
    --cc=kbuild-all@lists.01.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.