Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1348336
| From | kbuild test robot <lkp@intel.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 2/3] printk: Skip messages on oops |
| Date | 2016-03-02 18:10 +0100 |
| Message-ID | <r8irE-2bo-19@gated-at.bofh.it> (permalink) |
| References | <r8hvC-1yT-41@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
[Multipart message — attachments visible in raw view] - view raw
Hi Jan,
[auto build test ERROR on v4.5-rc6]
[cannot apply to next-20160302]
[if your patch is applied to the wrong git tree, please drop us a note to help improving the system]
url: https://github.com/0day-ci/linux/commits/Jan-Kara/printk-Make-printk-completely-async/20160303-000904
config: i386-tinyconfig (attached as .config)
reproduce:
# save the attached .config to linux build tree
make ARCH=i386
All errors (new ones prefixed by >>):
kernel/printk/printk.c: In function 'console_unlock':
>> kernel/printk/printk.c:2370:7: error: 'oops_start_seq' undeclared (first use in this function)
if (oops_start_seq &&
^
kernel/printk/printk.c:2370:7: note: each undeclared identifier is reported only once for each function it appears in
vim +/oops_start_seq +2370 kernel/printk/printk.c
2364
2365 /*
2366 * If oops happened and there are more than
2367 * PRINT_MSGS_BEFORE_OOPS messages pending before oops message,
2368 * skip them to make oops appear faster.
2369 */
> 2370 if (oops_start_seq &&
2371 console_seq + PRINT_MSGS_BEFORE_OOPS < oops_start_seq) {
2372 len = sprintf(text,
2373 "** %u printk messages dropped due to oops ** ",
---
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 1/3] printk: Make printk() completely async Jan Kara <jack@suse.cz> - 2016-03-02 17:00 +0100
[PATCH 2/3] printk: Skip messages on oops Jan Kara <jack@suse.cz> - 2016-03-02 17:10 +0100
Re: [PATCH 2/3] printk: Skip messages on oops kbuild test robot <lkp@intel.com> - 2016-03-02 18:10 +0100
[PATCH 3/3] printk: debug: Slow down printing to 9600 bauds Jan Kara <jack@suse.cz> - 2016-03-02 17:10 +0100
Re: [PATCH 1/3] printk: Make printk() completely async Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> - 2016-03-03 12:30 +0100
Re: [PATCH 1/3] printk: Make printk() completely async Jan Kara <jack@suse.cz> - 2016-03-03 13:10 +0100
csiph-web