lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 23 Dec 2021 21:11:38 +0800
From:   Like Xu <like.xu.linux@...il.com>
To:     Stephane Eranian <eranian@...gle.com>
Cc:     kbuild-all@...ts.01.org, peterz@...radead.org,
        kim.phillips@....com, acme@...hat.com, jolsa@...hat.com,
        songliubraving@...com, mpe@...erman.id.au, maddy@...ux.ibm.com,
        kernel test robot <lkp@...el.com>,
        "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v4 08/14] ACPI: add perf low power callback

On 14/12/2021 6:40 am, kernel test robot wrote:
> Hi Stephane,
> 
> Thank you for the patch! Yet something to improve:
> 
> [auto build test ERROR on tip/perf/core]
> [also build test ERROR on tip/x86/core v5.16-rc5]
> [cannot apply to rafael-pm/linux-next]
> [If your patch is applied to the wrong git tree, kindly drop us a note.
> And when submitting patch, we suggest to use '--base' as documented in
> https://git-scm.com/docs/git-format-patch]
> 
> url:https://github.com/0day-ci/linux/commits/Stephane-Eranian/perf-x86-amd-Add-AMD-Fam19h-Branch-Sampling-support/20211211-050541
> base:https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git  a9f4a6e92b3b319296fb078da2615f618f6cd80c
> config: x86_64-randconfig-c002-20211210 (https://download.01.org/0day-ci/archive/20211214/202112140636.UOuRtBxF-lkp@intel.com/config)
> compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
> reproduce (this is a W=1 build):
>          #https://github.com/0day-ci/linux/commit/9d928356688ed9c42e01fed16e59c1d6eda16647
>          git remote add linux-reviewhttps://github.com/0day-ci/linux
>          git fetch --no-tags linux-review Stephane-Eranian/perf-x86-amd-Add-AMD-Fam19h-Branch-Sampling-support/20211211-050541
>          git checkout 9d928356688ed9c42e01fed16e59c1d6eda16647
>          # save the config file to linux build tree
>          mkdir build_dir
>          make W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash
> 
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kernel test robot<lkp@...el.com>
> 
> All errors (new ones prefixed by >>):
> 
>     drivers/acpi/acpi_pad.c: In function 'power_saving_thread':
>>> drivers/acpi/acpi_pad.c:168:4: error: implicit declaration of function 'perf_lopwr_cb' [-Werror=implicit-function-declaration]
>       168 |    perf_lopwr_cb(true);
>           |    ^~~~~~~~~~~~~
>     cc1: some warnings being treated as errors

Hi Stephane,

does this snippet help to fix this issue ?

diff --git a/drivers/acpi/acpi_pad.c b/drivers/acpi/acpi_pad.c
index a306a07a6..fdb505305 100644
--- a/drivers/acpi/acpi_pad.c
+++ b/drivers/acpi/acpi_pad.c
@@ -18,6 +18,7 @@
  #include <linux/slab.h>
  #include <linux/acpi.h>
  #include <asm/mwait.h>
+#include <linux/perf_event.h>
  #include <xen/xen.h>

  #define ACPI_PROCESSOR_AGGREGATOR_CLASS        "acpi_pad"

What's more, it seems thet "CONFIG_ACPI_PROCESSOR_AGGREGATOR=y" is requested
for "CONFIG_PERF_EVENTS_AMD_BRS=y". Otherwise, we need to EXPORT_SYMBOL_GPL
for both perf_lopwr_needed and perf_amd_brs_lopwr_cb. Got a better idea?

Thanks,
Like Xu

> 
> 
> vim +/perf_lopwr_cb +168 drivers/acpi/acpi_pad.c

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ