All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp at intel.com>
To: devel@acpica.org
Subject: [Devel] [pm:bleeding-edge 46/47] drivers/acpi/processor_idle.c:546:15: warning: extra tokens at end of #ifdef directive
Date: Wed, 31 Mar 2021 07:14:48 +0800	[thread overview]
Message-ID: <202103310741.YpByfbnj-lkp@intel.com> (raw)

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git bleeding-edge
head:   506a524e05e240d2878cf86a56c47e72e09d329f
commit: bc5706eaeae0b51385d3859b0fdf17a2c8fdc134 [46/47] ACPI: processor: Fix CPU0 wakeup in acpi_idle_play_dead()
config: x86_64-randconfig-a012-20210330 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 482283042f795ecc27838a3b2f76b5494991401c)
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
        # install x86_64 cross compiling tool for clang build
        # apt-get install binutils-x86-64-linux-gnu
        # https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git/commit/?id=bc5706eaeae0b51385d3859b0fdf17a2c8fdc134
        git remote add pm https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
        git fetch --no-tags pm bleeding-edge
        git checkout bc5706eaeae0b51385d3859b0fdf17a2c8fdc134
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>

All warnings (new ones prefixed by >>):

>> drivers/acpi/processor_idle.c:546:15: warning: extra tokens at end of #ifdef directive [-Wextra-tokens]
   #ifdef defined(CONFIG_X86) && defined(CONFIG_HOTPLUG_CPU)
                 ^
                 //
   drivers/acpi/processor_idle.c:1103:12: warning: no previous prototype for function 'acpi_processor_ffh_lpi_probe' [-Wmissing-prototypes]
   int __weak acpi_processor_ffh_lpi_probe(unsigned int cpu)
              ^
   drivers/acpi/processor_idle.c:1103:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   int __weak acpi_processor_ffh_lpi_probe(unsigned int cpu)
   ^
   static 
   drivers/acpi/processor_idle.c:1108:12: warning: no previous prototype for function 'acpi_processor_ffh_lpi_enter' [-Wmissing-prototypes]
   int __weak acpi_processor_ffh_lpi_enter(struct acpi_lpi_state *lpi)
              ^
   drivers/acpi/processor_idle.c:1108:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   int __weak acpi_processor_ffh_lpi_enter(struct acpi_lpi_state *lpi)
   ^
   static 
   3 warnings generated.


vim +546 drivers/acpi/processor_idle.c

   524	
   525	/**
   526	 * acpi_idle_play_dead - enters an ACPI state for long-term idle (i.e. off-lining)
   527	 * @dev: the target CPU
   528	 * @index: the index of suggested state
   529	 */
   530	static int acpi_idle_play_dead(struct cpuidle_device *dev, int index)
   531	{
   532		struct acpi_processor_cx *cx = per_cpu(acpi_cstate[index], dev->cpu);
   533	
   534		ACPI_FLUSH_CPU_CACHE();
   535	
   536		while (1) {
   537	
   538			if (cx->entry_method == ACPI_CSTATE_HALT)
   539				safe_halt();
   540			else if (cx->entry_method == ACPI_CSTATE_SYSTEMIO) {
   541				inb(cx->address);
   542				wait_for_freeze();
   543			} else
   544				return -ENODEV;
   545	
 > 546	#ifdef defined(CONFIG_X86) && defined(CONFIG_HOTPLUG_CPU)
   547			/* If NMI wants to wake up CPU0, start CPU0. */
   548			if (wakeup_cpu0())
   549				start_cpu0();
   550	#endif
   551		}
   552	
   553		/* Never reached */
   554		return 0;
   555	}
   556	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 45317 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Vitaly Kuznetsov <vkuznets@redhat.com>
Cc: kbuild-all@lists.01.org, clang-built-linux@googlegroups.com,
	linux-acpi@vger.kernel.org, devel@acpica.org,
	linux-pm@vger.kernel.org, "Rafael J. Wysocki" <rjw@rjwysocki.net>
Subject: [pm:bleeding-edge 46/47] drivers/acpi/processor_idle.c:546:15: warning: extra tokens at end of #ifdef directive
Date: Wed, 31 Mar 2021 07:14:48 +0800	[thread overview]
Message-ID: <202103310741.YpByfbnj-lkp@intel.com> (raw)

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git bleeding-edge
head:   506a524e05e240d2878cf86a56c47e72e09d329f
commit: bc5706eaeae0b51385d3859b0fdf17a2c8fdc134 [46/47] ACPI: processor: Fix CPU0 wakeup in acpi_idle_play_dead()
config: x86_64-randconfig-a012-20210330 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 482283042f795ecc27838a3b2f76b5494991401c)
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
        # install x86_64 cross compiling tool for clang build
        # apt-get install binutils-x86-64-linux-gnu
        # https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git/commit/?id=bc5706eaeae0b51385d3859b0fdf17a2c8fdc134
        git remote add pm https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
        git fetch --no-tags pm bleeding-edge
        git checkout bc5706eaeae0b51385d3859b0fdf17a2c8fdc134
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

>> drivers/acpi/processor_idle.c:546:15: warning: extra tokens at end of #ifdef directive [-Wextra-tokens]
   #ifdef defined(CONFIG_X86) && defined(CONFIG_HOTPLUG_CPU)
                 ^
                 //
   drivers/acpi/processor_idle.c:1103:12: warning: no previous prototype for function 'acpi_processor_ffh_lpi_probe' [-Wmissing-prototypes]
   int __weak acpi_processor_ffh_lpi_probe(unsigned int cpu)
              ^
   drivers/acpi/processor_idle.c:1103:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   int __weak acpi_processor_ffh_lpi_probe(unsigned int cpu)
   ^
   static 
   drivers/acpi/processor_idle.c:1108:12: warning: no previous prototype for function 'acpi_processor_ffh_lpi_enter' [-Wmissing-prototypes]
   int __weak acpi_processor_ffh_lpi_enter(struct acpi_lpi_state *lpi)
              ^
   drivers/acpi/processor_idle.c:1108:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   int __weak acpi_processor_ffh_lpi_enter(struct acpi_lpi_state *lpi)
   ^
   static 
   3 warnings generated.


vim +546 drivers/acpi/processor_idle.c

   524	
   525	/**
   526	 * acpi_idle_play_dead - enters an ACPI state for long-term idle (i.e. off-lining)
   527	 * @dev: the target CPU
   528	 * @index: the index of suggested state
   529	 */
   530	static int acpi_idle_play_dead(struct cpuidle_device *dev, int index)
   531	{
   532		struct acpi_processor_cx *cx = per_cpu(acpi_cstate[index], dev->cpu);
   533	
   534		ACPI_FLUSH_CPU_CACHE();
   535	
   536		while (1) {
   537	
   538			if (cx->entry_method == ACPI_CSTATE_HALT)
   539				safe_halt();
   540			else if (cx->entry_method == ACPI_CSTATE_SYSTEMIO) {
   541				inb(cx->address);
   542				wait_for_freeze();
   543			} else
   544				return -ENODEV;
   545	
 > 546	#ifdef defined(CONFIG_X86) && defined(CONFIG_HOTPLUG_CPU)
   547			/* If NMI wants to wake up CPU0, start CPU0. */
   548			if (wakeup_cpu0())
   549				start_cpu0();
   550	#endif
   551		}
   552	
   553		/* Never reached */
   554		return 0;
   555	}
   556	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 45317 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: [pm:bleeding-edge 46/47] drivers/acpi/processor_idle.c:546:15: warning: extra tokens at end of #ifdef directive
Date: Wed, 31 Mar 2021 07:14:48 +0800	[thread overview]
Message-ID: <202103310741.YpByfbnj-lkp@intel.com> (raw)

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git bleeding-edge
head:   506a524e05e240d2878cf86a56c47e72e09d329f
commit: bc5706eaeae0b51385d3859b0fdf17a2c8fdc134 [46/47] ACPI: processor: Fix CPU0 wakeup in acpi_idle_play_dead()
config: x86_64-randconfig-a012-20210330 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 482283042f795ecc27838a3b2f76b5494991401c)
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
        # install x86_64 cross compiling tool for clang build
        # apt-get install binutils-x86-64-linux-gnu
        # https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git/commit/?id=bc5706eaeae0b51385d3859b0fdf17a2c8fdc134
        git remote add pm https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
        git fetch --no-tags pm bleeding-edge
        git checkout bc5706eaeae0b51385d3859b0fdf17a2c8fdc134
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

>> drivers/acpi/processor_idle.c:546:15: warning: extra tokens at end of #ifdef directive [-Wextra-tokens]
   #ifdef defined(CONFIG_X86) && defined(CONFIG_HOTPLUG_CPU)
                 ^
                 //
   drivers/acpi/processor_idle.c:1103:12: warning: no previous prototype for function 'acpi_processor_ffh_lpi_probe' [-Wmissing-prototypes]
   int __weak acpi_processor_ffh_lpi_probe(unsigned int cpu)
              ^
   drivers/acpi/processor_idle.c:1103:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   int __weak acpi_processor_ffh_lpi_probe(unsigned int cpu)
   ^
   static 
   drivers/acpi/processor_idle.c:1108:12: warning: no previous prototype for function 'acpi_processor_ffh_lpi_enter' [-Wmissing-prototypes]
   int __weak acpi_processor_ffh_lpi_enter(struct acpi_lpi_state *lpi)
              ^
   drivers/acpi/processor_idle.c:1108:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   int __weak acpi_processor_ffh_lpi_enter(struct acpi_lpi_state *lpi)
   ^
   static 
   3 warnings generated.


vim +546 drivers/acpi/processor_idle.c

   524	
   525	/**
   526	 * acpi_idle_play_dead - enters an ACPI state for long-term idle (i.e. off-lining)
   527	 * @dev: the target CPU
   528	 * @index: the index of suggested state
   529	 */
   530	static int acpi_idle_play_dead(struct cpuidle_device *dev, int index)
   531	{
   532		struct acpi_processor_cx *cx = per_cpu(acpi_cstate[index], dev->cpu);
   533	
   534		ACPI_FLUSH_CPU_CACHE();
   535	
   536		while (1) {
   537	
   538			if (cx->entry_method == ACPI_CSTATE_HALT)
   539				safe_halt();
   540			else if (cx->entry_method == ACPI_CSTATE_SYSTEMIO) {
   541				inb(cx->address);
   542				wait_for_freeze();
   543			} else
   544				return -ENODEV;
   545	
 > 546	#ifdef defined(CONFIG_X86) && defined(CONFIG_HOTPLUG_CPU)
   547			/* If NMI wants to wake up CPU0, start CPU0. */
   548			if (wakeup_cpu0())
   549				start_cpu0();
   550	#endif
   551		}
   552	
   553		/* Never reached */
   554		return 0;
   555	}
   556	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 45317 bytes --]

             reply	other threads:[~2021-03-30 23:14 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-30 23:14 kernel test robot [this message]
2021-03-30 23:14 ` [pm:bleeding-edge 46/47] drivers/acpi/processor_idle.c:546:15: warning: extra tokens at end of #ifdef directive kernel test robot
2021-03-30 23:14 ` kernel test robot
  -- strict thread matches above, loose matches on Subject: below --
2021-03-30 23:24 [Devel] " kernel test robot

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=202103310741.YpByfbnj-lkp@intel.com \
    --to=devel@acpica.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.