From: kbuild test robot <lkp@intel.com>
To: Dan Williams <dan.j.williams@intel.com>
Cc: kbuild-all@01.org, akpm@linux-foundation.org,
"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>,
Keith Busch <keith.busch@intel.com>,
peterz@infradead.org, dave.hansen@linux.intel.com,
linux-mm@kvack.org, x86@kernel.org, linux-kernel@vger.kernel.org,
mgorman@suse.de
Subject: Re: [PATCH v6 1/6] acpi: Create subtable parsing infrastructure
Date: Tue, 18 Dec 2018 20:45:37 +0800 [thread overview]
Message-ID: <201812182005.IEhsMA1s%fengguang.wu@intel.com> (raw)
In-Reply-To: <154510700824.1941238.14650493839997144294.stgit@dwillia2-desk3.amr.corp.intel.com>
[-- Attachment #1: Type: text/plain, Size: 2645 bytes --]
Hi Keith,
I love your patch! Yet something to improve:
[auto build test ERROR on linus/master]
[also build test ERROR on v4.20-rc7 next-20181218]
[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/Dan-Williams/mm-Randomize-free-memory/20181218-130230
config: arm64-defconfig (attached as .config)
compiler: aarch64-linux-gnu-gcc (Debian 7.2.0-11) 7.2.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
GCC_VERSION=7.2.0 make.cross ARCH=arm64
All errors (new ones prefixed by >>):
drivers//irqchip/irq-gic-v3.c: In function 'gic_acpi_collect_virt_info':
>> drivers//irqchip/irq-gic-v3.c:1542:11: error: passing argument 2 of 'acpi_table_parse_madt' from incompatible pointer type [-Werror=incompatible-pointer-types]
gic_acpi_parse_virt_madt_gicc, 0);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from drivers//irqchip/irq-gic-v3.c:20:0:
include/linux/acpi.h:249:5: note: expected 'acpi_tbl_entry_handler {aka int (*)(union acpi_subtable_headers *, const long unsigned int)}' but argument is of type 'int (*)(struct acpi_subtable_header *, const long unsigned int)'
int acpi_table_parse_madt(enum acpi_madt_type id,
^~~~~~~~~~~~~~~~~~~~~
cc1: some warnings being treated as errors
vim +/acpi_table_parse_madt +1542 drivers//irqchip/irq-gic-v3.c
1839e576 Julien Grall 2016-04-11 1536
1839e576 Julien Grall 2016-04-11 1537 static bool __init gic_acpi_collect_virt_info(void)
1839e576 Julien Grall 2016-04-11 1538 {
1839e576 Julien Grall 2016-04-11 1539 int count;
1839e576 Julien Grall 2016-04-11 1540
1839e576 Julien Grall 2016-04-11 1541 count = acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_INTERRUPT,
1839e576 Julien Grall 2016-04-11 @1542 gic_acpi_parse_virt_madt_gicc, 0);
1839e576 Julien Grall 2016-04-11 1543
1839e576 Julien Grall 2016-04-11 1544 return (count > 0);
1839e576 Julien Grall 2016-04-11 1545 }
1839e576 Julien Grall 2016-04-11 1546
:::::: The code at line 1542 was first introduced by commit
:::::: 1839e576968f34b9a31da9f0033f8de12a1c9de6 irqchip/gic-v3: Parse and export virtual GIC information
:::::: TO: Julien Grall <julien.grall@arm.com>
:::::: CC: Christoffer Dall <christoffer.dall@linaro.org>
---
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: 40931 bytes --]
next prev parent reply other threads:[~2018-12-18 12:45 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-18 4:23 [PATCH v6 0/6] mm: Randomize free memory Dan Williams
2018-12-18 4:23 ` [PATCH v6 1/6] acpi: Create subtable parsing infrastructure Dan Williams
2018-12-18 12:45 ` kbuild test robot [this message]
2018-12-18 13:39 ` kbuild test robot
2018-12-18 4:23 ` [PATCH v6 2/6] acpi: Add HMAT to generic parsing tables Dan Williams
2018-12-18 4:23 ` [PATCH v6 3/6] acpi/numa: Set the memory-side-cache size in memblocks Dan Williams
2018-12-18 8:20 ` kbuild test robot
2018-12-18 4:23 ` [PATCH v6 4/6] mm: Shuffle initial free memory to improve memory-side-cache utilization Dan Williams
2018-12-18 6:30 ` kbuild test robot
2018-12-18 4:23 ` [PATCH v6 5/6] mm: Move buddy list manipulations into helpers Dan Williams
2018-12-18 4:23 ` [PATCH v6 6/6] mm: Maintain randomization of page free lists Dan Williams
2018-12-19 20:32 ` [PATCH v6 0/6] mm: Randomize free memory Michal Hocko
2018-12-19 20:55 ` Dan Williams
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=201812182005.IEhsMA1s%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=akpm@linux-foundation.org \
--cc=dan.j.williams@intel.com \
--cc=dave.hansen@linux.intel.com \
--cc=kbuild-all@01.org \
--cc=keith.busch@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mgorman@suse.de \
--cc=peterz@infradead.org \
--cc=rafael.j.wysocki@intel.com \
--cc=x86@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox