From: kbuild test robot <lkp@intel.com>
To: Anshuman Gupta <anshuman.gupta@intel.com>
Cc: daniel.vetter@intel.com, intel-gfx@lists.freedesktop.org,
kbuild-all@01.org, martin.peres@intel.com
Subject: Re: [PATCH] Core-for-CI:ICL_only Disable ACPI idle driver
Date: Tue, 9 Apr 2019 09:33:08 +0800 [thread overview]
Message-ID: <201904090939.DCjxWuPo%lkp@intel.com> (raw)
In-Reply-To: <1554726136-21500-1-git-send-email-anshuman.gupta@intel.com>
[-- Attachment #1: Type: text/plain, Size: 4066 bytes --]
Hi Anshuman,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on pm/linux-next]
[also build test ERROR on v5.1-rc4 next-20190408]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
url: https://github.com/0day-ci/linux/commits/Anshuman-Gupta/Core-for-CI-ICL_only-Disable-ACPI-idle-driver/20190409-081735
base: https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git linux-next
config: x86_64-randconfig-x006-201914 (attached as .config)
compiler: gcc-7 (Debian 7.3.0-1) 7.3.0
reproduce:
# save the attached .config to linux build tree
make ARCH=x86_64
All error/warnings (new ones prefixed by >>):
In file included from drivers//acpi/processor_driver.c:28:0:
>> drivers//acpi/processor_driver.c:69:29: error: 'intel_pmc_core_ids' undeclared here (not in a function); did you mean 'intel_cpu_ids'?
MODULE_DEVICE_TABLE(x86cpu, intel_pmc_core_ids);
^
include/linux/module.h:229:15: note: in definition of macro 'MODULE_DEVICE_TABLE'
extern typeof(name) __mod_##type##__##name##_device_table \
^~~~
>> include/linux/module.h:229:21: error: '__mod_x86cpu__intel_pmc_core_ids_device_table' aliased to undefined symbol 'intel_pmc_core_ids'
extern typeof(name) __mod_##type##__##name##_device_table \
^
>> drivers//acpi/processor_driver.c:69:1: note: in expansion of macro 'MODULE_DEVICE_TABLE'
MODULE_DEVICE_TABLE(x86cpu, intel_pmc_core_ids);
^~~~~~~~~~~~~~~~~~~
--
In file included from drivers/acpi/processor_driver.c:28:0:
drivers/acpi/processor_driver.c:69:29: error: 'intel_pmc_core_ids' undeclared here (not in a function); did you mean 'intel_cpu_ids'?
MODULE_DEVICE_TABLE(x86cpu, intel_pmc_core_ids);
^
include/linux/module.h:229:15: note: in definition of macro 'MODULE_DEVICE_TABLE'
extern typeof(name) __mod_##type##__##name##_device_table \
^~~~
>> include/linux/module.h:229:21: error: '__mod_x86cpu__intel_pmc_core_ids_device_table' aliased to undefined symbol 'intel_pmc_core_ids'
extern typeof(name) __mod_##type##__##name##_device_table \
^
drivers/acpi/processor_driver.c:69:1: note: in expansion of macro 'MODULE_DEVICE_TABLE'
MODULE_DEVICE_TABLE(x86cpu, intel_pmc_core_ids);
^~~~~~~~~~~~~~~~~~~
vim +69 drivers//acpi/processor_driver.c
> 28 #include <linux/module.h>
29 #include <linux/init.h>
30 #include <linux/cpufreq.h>
31 #include <linux/cpu.h>
32 #include <linux/cpuidle.h>
33 #include <linux/slab.h>
34 #include <linux/acpi.h>
35
36 #include <acpi/processor.h>
37
38 #include <asm/cpu_device_id.h>
39 #include <asm/intel-family.h>
40
41 #include "internal.h"
42
43 #define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80
44 #define ACPI_PROCESSOR_NOTIFY_POWER 0x81
45 #define ACPI_PROCESSOR_NOTIFY_THROTTLING 0x82
46
47 #define _COMPONENT ACPI_PROCESSOR_COMPONENT
48 ACPI_MODULE_NAME("processor_driver");
49
50 MODULE_AUTHOR("Paul Diefenbaugh");
51 MODULE_DESCRIPTION("ACPI Processor Driver");
52 MODULE_LICENSE("GPL");
53
54 static int acpi_processor_start(struct device *dev);
55 static int acpi_processor_stop(struct device *dev);
56
57 static const struct acpi_device_id processor_device_ids[] = {
58 {ACPI_PROCESSOR_OBJECT_HID, 0},
59 {ACPI_PROCESSOR_DEVICE_HID, 0},
60 {"", 0},
61 };
62 MODULE_DEVICE_TABLE(acpi, processor_device_ids);
63
64 #define ICPU(model) { X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, }
65 static const struct x86_cpu_id intel_cpu_ids[] = {
66 ICPU(INTEL_FAM6_ICELAKE_MOBILE), /* ICL */
67 {}
68 };
> 69 MODULE_DEVICE_TABLE(x86cpu, intel_pmc_core_ids);
70
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 31334 bytes --]
[-- Attachment #3: Type: text/plain, Size: 159 bytes --]
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2019-04-09 1:33 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-08 12:22 [PATCH] Core-for-CI:ICL_only Disable ACPI idle driver Anshuman Gupta
2019-04-08 13:08 ` Saarinen, Jani
2019-04-08 15:13 ` ✓ Fi.CI.BAT: success for " Patchwork
2019-04-08 17:48 ` ✓ Fi.CI.IGT: " Patchwork
2019-04-09 1:33 ` kbuild test robot [this message]
2019-04-09 4:26 ` [PATCH] " kbuild test robot
2019-04-09 6:29 ` [PATCH v2] " Anshuman Gupta
2019-04-09 15:49 ` Rafael J. Wysocki
2019-04-10 8:50 ` Peres, Martin
2019-04-09 7:57 ` ✗ Fi.CI.BAT: failure for Core-for-CI:ICL_only Disable ACPI idle driver (rev2) Patchwork
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=201904090939.DCjxWuPo%lkp@intel.com \
--to=lkp@intel.com \
--cc=anshuman.gupta@intel.com \
--cc=daniel.vetter@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=kbuild-all@01.org \
--cc=martin.peres@intel.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox