All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jessica Yu <jeyu@kernel.org>
To: lkp@lists.01.org
Subject: Re: [PATCH v3 1/2] modpost: rework and consolidate logging interface
Date: Tue, 10 Mar 2020 12:32:00 +0100	[thread overview]
Message-ID: <20200310113158.GA4865@linux-8ccs.fritz.box> (raw)
In-Reply-To: <CAK7LNAQqMGSkX4Coe+f49SbXT_jkG_Mm4XZ3EJei0_K7SEaLhg@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 2562 bytes --]

+++ Masahiro Yamada [09/03/20 20:03 +0900]:
>On Mon, Mar 9, 2020 at 7:58 PM Jessica Yu <jeyu@kernel.org> wrote:
>>
>> +++ Masahiro Yamada [09/03/20 19:49 +0900]:
>> >On Mon, Mar 9, 2020 at 7:39 PM Jessica Yu <jeyu@kernel.org> wrote:
>> >>
>> >> Ah, sorry, I mean the kbuild 0-day bot errors. I am just realizing
>> >> the 0-day bot emails are not CC'd to lkml. Here is the error I got
>> >> from the bot:
>> >>
>> >> ---
>> >>
>> >> I love your patch! Yet something to improve:
>> >>
>> >> [auto build test ERROR on linus/master]
>> >> [also build test ERROR on v5.6-rc4 next-20200306]
>> >> [if your patch is applied to the wrong git tree, please drop us a note to help
>> >> improve the system. BTW, we also suggest to use '--base' option to specify the
>> >> base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
>> >>
>> >> url:    https://github.com/0day-ci/linux/commits/Jessica-Yu/modpost-rework-and-consolidate-logging-interface/20200307-052346
>> >> base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 30fe0d07fd7b27d41d9b31a224052cc4e910947a
>> >> config: sh-randconfig-a001-20200306 (attached as .config)
>> >> compiler: sh4-linux-gcc (GCC) 7.5.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.5.0 make.cross ARCH=sh
>> >>
>> >> If you fix the issue, kindly add following tag
>> >> Reported-by: kbuild test robot <lkp@intel.com>
>> >>
>> >> All errors (new ones prefixed by >>):
>> >>
>> >> >> ERROR: modpost: "adc_single" [arch/sh/boards/mach-hp6xx/hp6xx_apm.ko] undefined!
>> >
>> >
>> >Indeed, this one is odd.
>> >I have no idea...
>>
>> I've pushed the patches to a branch to let the kbuild bot run through its
>> build tests again, and if I have extra time today I will try to
>> reproduce this and let you know the results.
>>
>> Thanks,
>>
>> Jessica
>
>
>Ah, Now I see.
>
>
>Because you added "modpost:" prefix.
>
>
>
>The previous error message:
>
>ERROR: "adc_single" [arch/sh/boards/mach-hp6xx/hp6xx_apm.ko] undefined!
>
>
>The new error message:
>
>ERROR: modpost: "adc_single" [arch/sh/boards/mach-hp6xx/hp6xx_apm.ko] undefined!
>
>
>
>So, the bot assumed it was a new error.

Nice catch! Hm, I suppose we need to let the LKP folks know about the
change in error message. CC'd LKP mailing list.

Jessica

WARNING: multiple messages have this Message-ID (diff)
From: Jessica Yu <jeyu@kernel.org>
To: Masahiro Yamada <masahiroy@kernel.org>
Cc: Matthias Maennich <maennich@google.com>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	lkp@01.org
Subject: Re: [PATCH v3 1/2] modpost: rework and consolidate logging interface
Date: Tue, 10 Mar 2020 12:32:00 +0100	[thread overview]
Message-ID: <20200310113158.GA4865@linux-8ccs.fritz.box> (raw)
In-Reply-To: <CAK7LNAQqMGSkX4Coe+f49SbXT_jkG_Mm4XZ3EJei0_K7SEaLhg@mail.gmail.com>

+++ Masahiro Yamada [09/03/20 20:03 +0900]:
>On Mon, Mar 9, 2020 at 7:58 PM Jessica Yu <jeyu@kernel.org> wrote:
>>
>> +++ Masahiro Yamada [09/03/20 19:49 +0900]:
>> >On Mon, Mar 9, 2020 at 7:39 PM Jessica Yu <jeyu@kernel.org> wrote:
>> >>
>> >> Ah, sorry, I mean the kbuild 0-day bot errors. I am just realizing
>> >> the 0-day bot emails are not CC'd to lkml. Here is the error I got
>> >> from the bot:
>> >>
>> >> ---
>> >>
>> >> I love your patch! Yet something to improve:
>> >>
>> >> [auto build test ERROR on linus/master]
>> >> [also build test ERROR on v5.6-rc4 next-20200306]
>> >> [if your patch is applied to the wrong git tree, please drop us a note to help
>> >> improve the system. BTW, we also suggest to use '--base' option to specify the
>> >> base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
>> >>
>> >> url:    https://github.com/0day-ci/linux/commits/Jessica-Yu/modpost-rework-and-consolidate-logging-interface/20200307-052346
>> >> base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 30fe0d07fd7b27d41d9b31a224052cc4e910947a
>> >> config: sh-randconfig-a001-20200306 (attached as .config)
>> >> compiler: sh4-linux-gcc (GCC) 7.5.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.5.0 make.cross ARCH=sh
>> >>
>> >> If you fix the issue, kindly add following tag
>> >> Reported-by: kbuild test robot <lkp@intel.com>
>> >>
>> >> All errors (new ones prefixed by >>):
>> >>
>> >> >> ERROR: modpost: "adc_single" [arch/sh/boards/mach-hp6xx/hp6xx_apm.ko] undefined!
>> >
>> >
>> >Indeed, this one is odd.
>> >I have no idea...
>>
>> I've pushed the patches to a branch to let the kbuild bot run through its
>> build tests again, and if I have extra time today I will try to
>> reproduce this and let you know the results.
>>
>> Thanks,
>>
>> Jessica
>
>
>Ah, Now I see.
>
>
>Because you added "modpost:" prefix.
>
>
>
>The previous error message:
>
>ERROR: "adc_single" [arch/sh/boards/mach-hp6xx/hp6xx_apm.ko] undefined!
>
>
>The new error message:
>
>ERROR: modpost: "adc_single" [arch/sh/boards/mach-hp6xx/hp6xx_apm.ko] undefined!
>
>
>
>So, the bot assumed it was a new error.

Nice catch! Hm, I suppose we need to let the LKP folks know about the
change in error message. CC'd LKP mailing list.

Jessica

  reply	other threads:[~2020-03-10 11:32 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-06 16:02 [PATCH v3 1/2] modpost: rework and consolidate logging interface Jessica Yu
2020-03-06 16:02 ` [PATCH v3 2/2] modpost: return error if module is missing ns imports and MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS=n Jessica Yu
2020-03-07  1:05 ` [PATCH v3 1/2] modpost: rework and consolidate logging interface kbuild test robot
2020-03-07  2:29 ` kbuild test robot
2020-03-09  0:40 ` Masahiro Yamada
2020-03-09  9:59   ` Jessica Yu
2020-03-09 10:20     ` Masahiro Yamada
2020-03-09 10:39       ` Jessica Yu
2020-03-09 10:49         ` Masahiro Yamada
2020-03-09 10:58           ` Jessica Yu
2020-03-09 11:03             ` Masahiro Yamada
2020-03-10 11:32               ` Jessica Yu [this message]
2020-03-10 11:32                 ` Jessica Yu
2020-03-10 15:55                 ` [LKP] " Philip Li
2020-03-10 15:57                   ` Philip Li
2020-03-11  1:00                   ` Masahiro Yamada
2020-03-11  1:00                     ` [LKP] " Masahiro Yamada
2020-03-11 12:26                     ` Philip Li
2020-03-11 12:28                       ` Philip Li
2020-03-12  0:50                     ` [LKP] " Rong Chen
2020-03-12  0:51                       ` Rong Chen
2020-03-11  0:56                 ` Masahiro Yamada
2020-03-11  0:56                   ` Masahiro Yamada

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=20200310113158.GA4865@linux-8ccs.fritz.box \
    --to=jeyu@kernel.org \
    --cc=lkp@lists.01.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.