From: kernel test robot <lkp@intel.com>
To: Jim Cromie <jim.cromie@gmail.com>,
jbaron@akamai.com, linux-kernel@vger.kernel.org
Cc: kbuild-all@lists.01.org, Jim Cromie <jim.cromie@gmail.com>
Subject: Re: [PATCH 5/7] dyndbg: WIP replace __dyndbg_callsite section with a zs-pool copy.
Date: Sat, 8 Aug 2020 07:50:13 +0800 [thread overview]
Message-ID: <202008080744.fKBEd5fV%lkp@intel.com> (raw)
In-Reply-To: <20200807200957.1269454-6-jim.cromie@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 3009 bytes --]
Hi Jim,
I love your patch! Yet something to improve:
[auto build test ERROR on linus/master]
[also build test ERROR on next-20200807]
[cannot apply to linux/master asm-generic/master v5.8]
[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/Jim-Cromie/dyndbg-WIP-diet-plan/20200808-041343
base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 86cfccb66937dd6cbf26ed619958b9e587e6a115
config: i386-randconfig-a003-20200807 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce (this is a W=1 build):
# save the attached .config to linux build tree
make W=1 ARCH=i386
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
ld: lib/dynamic_debug.o: in function `ddebug_callsite_put':
lib/dynamic_debug.c:176: undefined reference to `zs_unmap_object'
ld: lib/dynamic_debug.o: in function `ddebug_callsite_get':
lib/dynamic_debug.c:164: undefined reference to `zs_map_object'
ld: lib/dynamic_debug.o: in function `ddebug_zpool_add':
lib/dynamic_debug.c:985: undefined reference to `zs_malloc'
ld: lib/dynamic_debug.c:994: undefined reference to `zs_map_object'
ld: lib/dynamic_debug.c:1004: undefined reference to `zs_unmap_object'
ld: lib/dynamic_debug.o: in function `ddebug_callsite_put':
lib/dynamic_debug.c:176: undefined reference to `zs_unmap_object'
ld: lib/dynamic_debug.o: in function `ddebug_callsite_get':
lib/dynamic_debug.c:164: undefined reference to `zs_map_object'
ld: lib/dynamic_debug.o: in function `ddebug_callsite_put':
lib/dynamic_debug.c:176: undefined reference to `zs_unmap_object'
ld: lib/dynamic_debug.o: in function `ddebug_callsite_get':
lib/dynamic_debug.c:164: undefined reference to `zs_map_object'
ld: lib/dynamic_debug.o: in function `ddebug_zpool_remove':
>> lib/dynamic_debug.c:1016: undefined reference to `zs_free'
ld: lib/dynamic_debug.c:1011: undefined reference to `zs_unmap_object'
ld: lib/dynamic_debug.o: in function `ddebug_zpool_init':
lib/dynamic_debug.c:1178: undefined reference to `zs_create_pool'
ld: lib/dynamic_debug.c:1188: undefined reference to `zs_compact'
ld: lib/dynamic_debug.c:1188: undefined reference to `zs_get_total_pages'
vim +1016 lib/dynamic_debug.c
1006
1007 static void ddebug_zpool_remove(struct _ddebug *dp)
1008 {
1009 if (dp->site) {
1010 pr_warn("zhandle shouldnt be mapped now\n");
1011 zs_unmap_object(dd_callsite_zpool, dp->zhandle);
1012 }
1013 if (!dp->zhandle)
1014 pr_err("zhandle already cleared !\n");
1015 else
> 1016 zs_free(dd_callsite_zpool, dp->zhandle);
1017 }
1018
---
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: 32451 bytes --]
next prev parent reply other threads:[~2020-08-07 23:50 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-07 20:09 [PATCH 0/7] dyndbg: WIP diet plan Jim Cromie
2020-08-07 20:09 ` [PATCH 1/7] dyndbg: give %3u width in pr-format, cosmetic only Jim Cromie
2020-08-07 20:09 ` [PATCH 2/7] dyndbg: motivate a diet plan Jim Cromie
2020-08-07 20:09 ` [PATCH 3/7] dyndbg: select ZPOOL in Kconfig.debug Jim Cromie
2020-08-09 5:05 ` Randy Dunlap
2020-08-09 15:09 ` jim.cromie
2020-08-07 20:09 ` [PATCH 4/7] dyndbg: split struct _ddebug in 2, creating _ddebug_callsite Jim Cromie
2020-08-07 20:09 ` [PATCH 5/7] dyndbg: WIP replace __dyndbg_callsite section with a zs-pool copy Jim Cromie
2020-08-07 23:50 ` kernel test robot [this message]
2020-08-07 20:09 ` [PATCH 6/7] dyndbg: add locking around zpool-add loop in zpool-init Jim Cromie
2020-08-07 20:09 ` [PATCH 6/8] dyndbg: ddebug_zpool_remove Jim Cromie
2020-08-07 20:09 ` [PATCH 7/7] dyndbg: enable 'cache' of active pr_debug callsites Jim Cromie
2020-08-09 4:35 ` [dyndbg] 4397a3e7bf: BUG:sleeping_function_called_from_invalid_context_at_mm/slab.h kernel test robot
2020-08-12 15:11 ` jim.cromie
2020-08-07 20:09 ` [PATCH 8/8] dyndbg: add locking around zpool-add loop in zpool-init Jim Cromie
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=202008080744.fKBEd5fV%lkp@intel.com \
--to=lkp@intel.com \
--cc=jbaron@akamai.com \
--cc=jim.cromie@gmail.com \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.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