The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Youling Tang <tangyouling@loongson.cn>,
	Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Cc: kbuild-all@lists.01.org, linux-mips@vger.kernel.org,
	linux-kernel@vger.kernel.org, tangyouling@loongson.cn
Subject: Re: [PATCH] MIPS: crash_dump.c: Simplify copy_oldmem_page()
Date: Fri, 5 Feb 2021 19:29:42 +0800	[thread overview]
Message-ID: <202102051959.ZAf2ZzO0-lkp@intel.com> (raw)
In-Reply-To: <1612516899-31285-1-git-send-email-tangyouling@loongson.cn>

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

Hi Youling,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on linus/master]
[also build test WARNING on v5.11-rc6 next-20210125]
[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/Youling-Tang/MIPS-crash_dump-c-Simplify-copy_oldmem_page/20210205-174220
base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 61556703b610a104de324e4f061dc6cf7b218b46
config: mips-allyesconfig (attached as .config)
compiler: mips-linux-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/0day-ci/linux/commit/b784382bee7f0a7c02539598bfb477bf10f16c85
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Youling-Tang/MIPS-crash_dump-c-Simplify-copy_oldmem_page/20210205-174220
        git checkout b784382bee7f0a7c02539598bfb477bf10f16c85
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=mips 

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 >>):

>> arch/mips/kernel/crash_dump.c:17:9: warning: no previous prototype for 'copy_oldmem_page' [-Wmissing-prototypes]
      17 | ssize_t copy_oldmem_page(unsigned long pfn, char *buf,
         |         ^~~~~~~~~~~~~~~~


vim +/copy_oldmem_page +17 arch/mips/kernel/crash_dump.c

7aa1c8f47e7e79 Ralf Baechle 2012-10-11   3  
7aa1c8f47e7e79 Ralf Baechle 2012-10-11   4  /**
7aa1c8f47e7e79 Ralf Baechle 2012-10-11   5   * copy_oldmem_page - copy one page from "oldmem"
7aa1c8f47e7e79 Ralf Baechle 2012-10-11   6   * @pfn: page frame number to be copied
7aa1c8f47e7e79 Ralf Baechle 2012-10-11   7   * @buf: target memory address for the copy; this can be in kernel address
7aa1c8f47e7e79 Ralf Baechle 2012-10-11   8   *	space or user address space (see @userbuf)
7aa1c8f47e7e79 Ralf Baechle 2012-10-11   9   * @csize: number of bytes to copy
7aa1c8f47e7e79 Ralf Baechle 2012-10-11  10   * @offset: offset in bytes into the page (based on pfn) to begin the copy
7aa1c8f47e7e79 Ralf Baechle 2012-10-11  11   * @userbuf: if set, @buf is in user address space, use copy_to_user(),
7aa1c8f47e7e79 Ralf Baechle 2012-10-11  12   *	otherwise @buf is in kernel address space, use memcpy().
7aa1c8f47e7e79 Ralf Baechle 2012-10-11  13   *
7aa1c8f47e7e79 Ralf Baechle 2012-10-11  14   * Copy a page from "oldmem". For this page, there is no pte mapped
7aa1c8f47e7e79 Ralf Baechle 2012-10-11  15   * in the current kernel.
7aa1c8f47e7e79 Ralf Baechle 2012-10-11  16   */
7aa1c8f47e7e79 Ralf Baechle 2012-10-11 @17  ssize_t copy_oldmem_page(unsigned long pfn, char *buf,

---
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: 69954 bytes --]

  reply	other threads:[~2021-02-05 11:35 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-05  9:21 [PATCH] MIPS: crash_dump.c: Simplify copy_oldmem_page() Youling Tang
2021-02-05 11:29 ` kernel test robot [this message]
2021-02-05 22:39 ` kernel test robot

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=202102051959.ZAf2ZzO0-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=tangyouling@loongson.cn \
    --cc=tsbogend@alpha.franken.de \
    /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