All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [RFC PATCH v6 08/12] livepatch/selftests: add klp-convert
Date: Thu, 17 Feb 2022 06:26:24 +0800	[thread overview]
Message-ID: <202202170629.9vC9IsP0-lkp@intel.com> (raw)
In-Reply-To: <20220216163940.228309-9-joe.lawrence@redhat.com>

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

Hi Joe,

[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on shuah-kselftest/next]
[also build test WARNING on linux/master masahiroy-kbuild/for-next linus/master v5.17-rc4]
[cannot apply to next-20220216]
[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/Joe-Lawrence/livepatch-klp-convert-tool/20220217-004100
base:   https://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git next
config: x86_64-allyesconfig (https://download.01.org/0day-ci/archive/20220217/202202170629.9vC9IsP0-lkp(a)intel.com/config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce (this is a W=1 build):
        # https://github.com/0day-ci/linux/commit/ea5129d2a3f776835ce3721f966f72d39426188c
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Joe-Lawrence/livepatch-klp-convert-tool/20220217-004100
        git checkout ea5129d2a3f776835ce3721f966f72d39426188c
        # save the config file to linux build tree
        mkdir build_dir
        make W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash lib/livepatch/

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

>> lib/livepatch/test_klp_convert1.c:11:6: warning: no previous prototype for 'print_saved_command_line' [-Wmissing-prototypes]
      11 | void print_saved_command_line(void)
         |      ^~~~~~~~~~~~~~~~~~~~~~~~
>> lib/livepatch/test_klp_convert1.c:16:6: warning: no previous prototype for 'print_driver_name' [-Wmissing-prototypes]
      16 | void print_driver_name(void)
         |      ^~~~~~~~~~~~~~~~~
>> lib/livepatch/test_klp_convert1.c:22:6: warning: no previous prototype for 'print_homonym_string' [-Wmissing-prototypes]
      22 | void print_homonym_string(void)
         |      ^~~~~~~~~~~~~~~~~~~~
--
>> lib/livepatch/test_klp_convert2.c:11:6: warning: no previous prototype for 'print_saved_command_line' [-Wmissing-prototypes]
      11 | void print_saved_command_line(void)
         |      ^~~~~~~~~~~~~~~~~~~~~~~~
>> lib/livepatch/test_klp_convert2.c:16:6: warning: no previous prototype for 'print_driver_name' [-Wmissing-prototypes]
      16 | void print_driver_name(void)
         |      ^~~~~~~~~~~~~~~~~
>> lib/livepatch/test_klp_convert2.c:22:6: warning: no previous prototype for 'print_homonym_string' [-Wmissing-prototypes]
      22 | void print_homonym_string(void)
         |      ^~~~~~~~~~~~~~~~~~~~


vim +/print_saved_command_line +11 lib/livepatch/test_klp_convert1.c

    10	
  > 11	void print_saved_command_line(void)
    12	{
    13		pr_info("saved_command_line, 0: %s\n", saved_command_line);
    14	}
    15	
  > 16	void print_driver_name(void)
    17	{
    18		pr_info("driver_name, 0: %s\n", driver_name);
    19		pr_info("test_klp_get_driver_name(), 0: %s\n", test_klp_get_driver_name());
    20	}
    21	
  > 22	void print_homonym_string(void)
    23	{
    24		pr_info("homonym_string, 1: %s\n", homonym_string);
    25		pr_info("get_homonym_string(), 1: %s\n", get_homonym_string());
    26	}
    27	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

  reply	other threads:[~2022-02-16 22:26 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-16 16:39 [RFC PATCH v6 00/12] livepatch: klp-convert tool Joe Lawrence
2022-02-16 16:39 ` [RFC PATCH v6 01/12] livepatch: Create and include UAPI headers Joe Lawrence
2022-04-14  8:50   ` Petr Mladek
2022-02-16 16:39 ` [RFC PATCH v6 02/12] kbuild: Support for symbols.klp creation Joe Lawrence
2022-04-14  9:35   ` Petr Mladek
2022-04-14 17:59     ` Nicolas Schier
2022-04-18 18:12       ` Joe Lawrence
2022-02-16 16:39 ` [RFC PATCH v6 03/12] livepatch: Add klp-convert tool Joe Lawrence
2022-02-16 16:46   ` Joe Lawrence
2022-02-16 16:56   ` Joe Lawrence
2022-04-14 15:03   ` elf API: was: " Petr Mladek
2022-04-18 18:01     ` Joe Lawrence
2023-02-06 18:16   ` Marcos Paulo de Souza
2022-02-16 16:39 ` [RFC PATCH v6 04/12] livepatch: Add klp-convert annotation helpers Joe Lawrence
2022-02-16 16:39 ` [RFC PATCH v6 05/12] modpost: Integrate klp-convert Joe Lawrence
2022-02-16 16:39 ` [RFC PATCH v6 06/12] livepatch: Add sample livepatch module Joe Lawrence
2023-02-07 12:52   ` Marcos Paulo de Souza
2022-02-16 16:39 ` [RFC PATCH v6 07/12] documentation: Update on livepatch elf format Joe Lawrence
2022-02-16 16:39 ` [RFC PATCH v6 08/12] livepatch/selftests: add klp-convert Joe Lawrence
2022-02-16 22:26   ` kernel test robot [this message]
2022-02-16 16:39 ` [RFC PATCH v6 09/12] livepatch/selftests: test multiple sections Joe Lawrence
2022-02-17  0:38   ` kernel test robot
2022-02-16 16:39 ` [RFC PATCH v6 10/12] livepatch/selftests: add __asm__ symbol renaming examples Joe Lawrence
2022-02-16 17:03   ` Joe Lawrence
2022-02-17  3:01   ` kernel test robot
2022-02-16 16:39 ` [RFC PATCH v6 11/12] livepatch/selftests: add data relocations test Joe Lawrence
2022-02-16 17:12   ` Joe Lawrence
2022-02-16 16:39 ` [RFC PATCH v6 12/12] livepatch/selftests: add static keys test Joe Lawrence
2022-02-16 17:17 ` [RFC PATCH v6 00/12] livepatch: klp-convert tool Joe Lawrence
2023-02-07 12:57 ` Marcos Paulo de Souza
2023-02-07 15:54   ` Joe Lawrence

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=202202170629.9vC9IsP0-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@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.