Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1478875
| From | kbuild test robot <lkp@intel.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH V4] mm: Add sysfs interface to dump each node's zonelist information |
| Date | 2016-09-08 09:50 +0200 |
| Message-ID | <sf2fU-2RT-21@gated-at.bofh.it> (permalink) |
| References | <seXzA-8qS-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
[Multipart message — attachments visible in raw view] - view raw
Hi Anshuman,
[auto build test ERROR on driver-core/driver-core-testing]
[also build test ERROR on v4.8-rc5]
[cannot apply to next-20160908]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
[Suggest to use git(>=2.9.0) format-patch --base=<commit> (or --base=auto for convenience) to record what (public, well-known) commit your patch series was built on]
[Check https://git-scm.com/docs/git-format-patch for more information]
url: https://github.com/0day-ci/linux/commits/Anshuman-Khandual/mm-Add-sysfs-interface-to-dump-each-node-s-zonelist-information/20160908-104922
config: x86_64-lkp (attached as .config)
compiler: gcc-6 (Debian 6.1.1-9) 6.1.1 20160705
reproduce:
# save the attached .config to linux build tree
make ARCH=x86_64
All errors (new ones prefixed by >>):
drivers/base/memory.c: In function 'dump_zonelist':
>> drivers/base/memory.c:455:4: error: 'zone_names' undeclared (first use in this function)
zone_names[zonelist->_zonerefs[i].zone_idx],
^~~~~~~~~~
drivers/base/memory.c:455:4: note: each undeclared identifier is reported only once for each function it appears in
vim +/zone_names +455 drivers/base/memory.c
449 ssize_t count = 0;
450
451 for (i = 0; zonelist->_zonerefs[i].zone; i++) {
452 count += sprintf(buf + count,
453 "\t\t(%d) (node %d) (%-7s 0x%pK)\n", i,
454 zonelist->_zonerefs[i].zone->zone_pgdat->node_id,
> 455 zone_names[zonelist->_zonerefs[i].zone_idx],
456 (void *) zonelist->_zonerefs[i].zone);
457 }
458 return count;
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH V2 1/2] mm: Export definition of 'zone_names' array through mmzone.h Anshuman Khandual <khandual@linux.vnet.ibm.com> - 2016-09-06 07:40 +0200
[PATCH V2 2/2] mm: Add sysfs interface to dump each node's zonelist information Anshuman Khandual <khandual@linux.vnet.ibm.com> - 2016-09-06 07:40 +0200
Re: [PATCH V2 2/2] mm: Add sysfs interface to dump each node's zonelist information kbuild test robot <lkp@intel.com> - 2016-09-06 08:20 +0200
Re: [PATCH V2 2/2] mm: Add sysfs interface to dump each node's zonelist information Anshuman Khandual <khandual@linux.vnet.ibm.com> - 2016-09-06 08:50 +0200
[PATCH V3] mm: Add sysfs interface to dump each node's zonelist information Anshuman Khandual <khandual@linux.vnet.ibm.com> - 2016-09-06 10:40 +0200
Re: [PATCH V3] mm: Add sysfs interface to dump each node's zonelist information kbuild test robot <lkp@intel.com> - 2016-09-06 11:10 +0200
Re: [PATCH V3] mm: Add sysfs interface to dump each node's zonelist information Anshuman Khandual <khandual@linux.vnet.ibm.com> - 2016-09-07 14:40 +0200
Re: [PATCH V3] mm: Add sysfs interface to dump each node's zonelist information Dave Hansen <dave.hansen@intel.com> - 2016-09-06 22:40 +0200
Re: [PATCH V3] mm: Add sysfs interface to dump each node's zonelist information Kees Cook <keescook@chromium.org> - 2016-09-07 05:10 +0200
Re: [PATCH V3] mm: Add sysfs interface to dump each node's zonelist information Anshuman Khandual <khandual@linux.vnet.ibm.com> - 2016-09-07 06:10 +0200
[PATCH V4] mm: Add sysfs interface to dump each node's zonelist information Anshuman Khandual <khandual@linux.vnet.ibm.com> - 2016-09-08 04:50 +0200
Re: [PATCH V4] mm: Add sysfs interface to dump each node's zonelist information kbuild test robot <lkp@intel.com> - 2016-09-08 09:50 +0200
Re: [PATCH V4] mm: Add sysfs interface to dump each node's zonelist information Dave Hansen <dave.hansen@intel.com> - 2016-09-08 22:30 +0200
csiph-web