From: kbuild test robot <lkp@intel.com>
Cc: kbuild-all@01.org, linux-arch@vger.kernel.org,
linux-kernel@vger.kernel.org,
Paul Gortmaker <paul.gortmaker@windriver.com>,
Rusty Russell <rusty@rustcorp.com.au>,
Andrew Morton <akpm@linux-foundation.org>,
Linus Torvalds <torvalds@linux-foundation.org>
Subject: Re: [PATCH 10/10] module.h: remove extable.h include now users have migrated
Date: Tue, 10 Jan 2017 10:24:34 +0800 [thread overview]
Message-ID: <201701101010.QnOIFS5d%fengguang.wu@intel.com> (raw)
In-Reply-To: <20170109204010.5047-11-paul.gortmaker@windriver.com>
[-- Attachment #1: Type: text/plain, Size: 2994 bytes --]
Hi Paul,
[auto build test ERROR on linus/master]
[also build test ERROR on v4.10-rc3 next-20170106]
[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/Paul-Gortmaker/Finalize-separation-of-extable-h-from-module-h/20170110-095123
config: openrisc-or1ksim_defconfig (attached as .config)
compiler: or32-linux-gcc (GCC) 4.5.1-or32-1.0rc1
reproduce:
wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
make.cross ARCH=openrisc
All error/warnings (new ones prefixed by >>):
arch/openrisc/mm/fault.c: In function 'do_page_fault':
>> arch/openrisc/mm/fault.c:240:3: error: implicit declaration of function 'search_exception_tables'
>> arch/openrisc/mm/fault.c:240:14: warning: assignment makes pointer from integer without a cast
vim +/search_exception_tables +240 arch/openrisc/mm/fault.c
61e85e36 Jonas Bonn 2011-06-04 224 no_context:
61e85e36 Jonas Bonn 2011-06-04 225
61e85e36 Jonas Bonn 2011-06-04 226 /* Are we prepared to handle this kernel fault?
61e85e36 Jonas Bonn 2011-06-04 227 *
61e85e36 Jonas Bonn 2011-06-04 228 * (The kernel has valid exception-points in the source
61e85e36 Jonas Bonn 2011-06-04 229 * when it acesses user-memory. When it fails in one
61e85e36 Jonas Bonn 2011-06-04 230 * of those points, we find it in a table and do a jump
61e85e36 Jonas Bonn 2011-06-04 231 * to some fixup code that loads an appropriate error
61e85e36 Jonas Bonn 2011-06-04 232 * code)
61e85e36 Jonas Bonn 2011-06-04 233 */
61e85e36 Jonas Bonn 2011-06-04 234
61e85e36 Jonas Bonn 2011-06-04 235 {
61e85e36 Jonas Bonn 2011-06-04 236 const struct exception_table_entry *entry;
61e85e36 Jonas Bonn 2011-06-04 237
61e85e36 Jonas Bonn 2011-06-04 238 __asm__ __volatile__("l.nop 42");
61e85e36 Jonas Bonn 2011-06-04 239
61e85e36 Jonas Bonn 2011-06-04 @240 if ((entry = search_exception_tables(regs->pc)) != NULL) {
61e85e36 Jonas Bonn 2011-06-04 241 /* Adjust the instruction pointer in the stackframe */
61e85e36 Jonas Bonn 2011-06-04 242 regs->pc = entry->fixup;
61e85e36 Jonas Bonn 2011-06-04 243 return;
61e85e36 Jonas Bonn 2011-06-04 244 }
61e85e36 Jonas Bonn 2011-06-04 245 }
61e85e36 Jonas Bonn 2011-06-04 246
61e85e36 Jonas Bonn 2011-06-04 247 /*
61e85e36 Jonas Bonn 2011-06-04 248 * Oops. The kernel tried to access some bad page. We'll have to
:::::: The code at line 240 was first introduced by commit
:::::: 61e85e367535a7b6385b404bef93928768140f96 OpenRISC: Memory management
:::::: TO: Jonas Bonn <jonas@southpole.se>
:::::: CC: Jonas Bonn <jonas@southpole.se>
---
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: 7356 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
To: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: kbuild-all@01.org, linux-arch@vger.kernel.org,
linux-kernel@vger.kernel.org,
Rusty Russell <rusty@rustcorp.com.au>,
Andrew Morton <akpm@linux-foundation.org>,
Linus Torvalds <torvalds@linux-foundation.org>
Subject: Re: [PATCH 10/10] module.h: remove extable.h include now users have migrated
Date: Tue, 10 Jan 2017 10:24:34 +0800 [thread overview]
Message-ID: <201701101010.QnOIFS5d%fengguang.wu@intel.com> (raw)
Message-ID: <20170110022434.qnITJL7dRu7IkAoSmAH0aQ-n7vN6PSvkamy-CGqq3dg@z> (raw)
In-Reply-To: <20170109204010.5047-11-paul.gortmaker@windriver.com>
[-- Attachment #1: Type: text/plain, Size: 2994 bytes --]
Hi Paul,
[auto build test ERROR on linus/master]
[also build test ERROR on v4.10-rc3 next-20170106]
[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/Paul-Gortmaker/Finalize-separation-of-extable-h-from-module-h/20170110-095123
config: openrisc-or1ksim_defconfig (attached as .config)
compiler: or32-linux-gcc (GCC) 4.5.1-or32-1.0rc1
reproduce:
wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
make.cross ARCH=openrisc
All error/warnings (new ones prefixed by >>):
arch/openrisc/mm/fault.c: In function 'do_page_fault':
>> arch/openrisc/mm/fault.c:240:3: error: implicit declaration of function 'search_exception_tables'
>> arch/openrisc/mm/fault.c:240:14: warning: assignment makes pointer from integer without a cast
vim +/search_exception_tables +240 arch/openrisc/mm/fault.c
61e85e36 Jonas Bonn 2011-06-04 224 no_context:
61e85e36 Jonas Bonn 2011-06-04 225
61e85e36 Jonas Bonn 2011-06-04 226 /* Are we prepared to handle this kernel fault?
61e85e36 Jonas Bonn 2011-06-04 227 *
61e85e36 Jonas Bonn 2011-06-04 228 * (The kernel has valid exception-points in the source
61e85e36 Jonas Bonn 2011-06-04 229 * when it acesses user-memory. When it fails in one
61e85e36 Jonas Bonn 2011-06-04 230 * of those points, we find it in a table and do a jump
61e85e36 Jonas Bonn 2011-06-04 231 * to some fixup code that loads an appropriate error
61e85e36 Jonas Bonn 2011-06-04 232 * code)
61e85e36 Jonas Bonn 2011-06-04 233 */
61e85e36 Jonas Bonn 2011-06-04 234
61e85e36 Jonas Bonn 2011-06-04 235 {
61e85e36 Jonas Bonn 2011-06-04 236 const struct exception_table_entry *entry;
61e85e36 Jonas Bonn 2011-06-04 237
61e85e36 Jonas Bonn 2011-06-04 238 __asm__ __volatile__("l.nop 42");
61e85e36 Jonas Bonn 2011-06-04 239
61e85e36 Jonas Bonn 2011-06-04 @240 if ((entry = search_exception_tables(regs->pc)) != NULL) {
61e85e36 Jonas Bonn 2011-06-04 241 /* Adjust the instruction pointer in the stackframe */
61e85e36 Jonas Bonn 2011-06-04 242 regs->pc = entry->fixup;
61e85e36 Jonas Bonn 2011-06-04 243 return;
61e85e36 Jonas Bonn 2011-06-04 244 }
61e85e36 Jonas Bonn 2011-06-04 245 }
61e85e36 Jonas Bonn 2011-06-04 246
61e85e36 Jonas Bonn 2011-06-04 247 /*
61e85e36 Jonas Bonn 2011-06-04 248 * Oops. The kernel tried to access some bad page. We'll have to
:::::: The code at line 240 was first introduced by commit
:::::: 61e85e367535a7b6385b404bef93928768140f96 OpenRISC: Memory management
:::::: TO: Jonas Bonn <jonas@southpole.se>
:::::: CC: Jonas Bonn <jonas@southpole.se>
---
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: 7356 bytes --]
next prev parent reply other threads:[~2017-01-10 2:24 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-09 20:40 [PATCH v2 00/10] Finalize separation of extable.h from module.h Paul Gortmaker
2017-01-09 20:40 ` Paul Gortmaker
2017-01-09 20:40 ` [PATCH 01/10] ia64: move ia64_done_with_exception out of asm/uaccess.h Paul Gortmaker
2017-01-09 20:40 ` [PATCH 02/10] ia64: ensure exception table search users include extable.h Paul Gortmaker
2017-01-09 20:40 ` Paul Gortmaker
2017-01-09 20:40 ` [PATCH 03/10] m32r: migrate exception table users off module.h and onto extable.h Paul Gortmaker
2017-01-09 20:40 ` Paul Gortmaker
2017-01-10 22:49 ` Sudip Mukherjee
2017-01-10 22:49 ` Sudip Mukherjee
2017-01-09 20:40 ` [PATCH 04/10] arm: " Paul Gortmaker
2017-01-09 20:40 ` Paul Gortmaker
2017-01-09 20:40 ` [PATCH 05/10] alpha: " Paul Gortmaker
2017-01-09 20:40 ` Paul Gortmaker
2017-01-09 20:40 ` [PATCH 06/10] mn10300: " Paul Gortmaker
2017-01-09 20:40 ` [PATCH 07/10] xtensa: " Paul Gortmaker
2017-01-09 20:40 ` Paul Gortmaker
2017-01-09 20:40 ` [PATCH 08/10] sh: " Paul Gortmaker
2017-01-09 20:40 ` Paul Gortmaker
2017-01-09 20:40 ` [PATCH 09/10] core: " Paul Gortmaker
2017-01-09 20:40 ` Paul Gortmaker
2017-01-09 20:40 ` [PATCH 10/10] module.h: remove extable.h include now users have migrated Paul Gortmaker
2017-01-09 20:40 ` Paul Gortmaker
2017-01-10 2:24 ` kbuild test robot [this message]
2017-01-10 2:24 ` kbuild test robot
2017-01-10 2:26 ` kbuild test robot
2017-01-10 2:26 ` kbuild test robot
2017-01-24 0:16 ` [PATCH v2 00/10] Finalize separation of extable.h from module.h Rusty Russell
2017-01-24 0:16 ` Rusty Russell
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=201701101010.QnOIFS5d%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=akpm@linux-foundation.org \
--cc=kbuild-all@01.org \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=paul.gortmaker@windriver.com \
--cc=rusty@rustcorp.com.au \
--cc=torvalds@linux-foundation.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;
as well as URLs for NNTP newsgroup(s).