All of lore.kernel.org
 help / color / mirror / Atom feed
From: Baoquan He <bhe@redhat.com>
To: kernel test robot <lkp@intel.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v3 6/9] x86: kdump: use generic interface to simplify crashkernel reservation code
Date: Tue, 7 Nov 2023 21:05:48 +0800	[thread overview]
Message-ID: <ZUo2LHDUn9KaunJd@MiWiFi-R3L-srv> (raw)
In-Reply-To: <202311071923.uYbShjYE-lkp@intel.com>

On 11/07/23 at 07:11pm, kernel test robot wrote:
> Hi Baoquan,
> 
> kernel test robot noticed the following build warnings:
> 
> [auto build test WARNING on powerpc/next]
> [also build test WARNING on powerpc/fixes v6.6]
> [cannot apply to arm64/for-next/core tip/x86/core linus/master next-20231107]
> [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#_base_tree_information]
> 
> url:    https://github.com/intel-lab-lkp/linux/commits/Baoquan-He/crash_core-c-remove-unnecessary-parameter-of-function/20230914-113546
> base:   https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git next
> patch link:    https://lore.kernel.org/r/20230914033142.676708-7-bhe%40redhat.com
> patch subject: [PATCH v3 6/9] x86: kdump: use generic interface to simplify crashkernel reservation code
> config: i386-randconfig-011-20230914 (https://download.01.org/0day-ci/archive/20231107/202311071923.uYbShjYE-lkp@intel.com/config)
> compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
> reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231107/202311071923.uYbShjYE-lkp@intel.com/reproduce)
> 
> If you fix the issue in a separate patch/commit (i.e. not just a new version of
> the same patch/commit), kindly add following tags
> | Reported-by: kernel test robot <lkp@intel.com>
> | Closes: https://lore.kernel.org/oe-kbuild-all/202311071923.uYbShjYE-lkp@intel.com/
> 
> All warnings (new ones prefixed by >>):
> 
> >> arch/x86/kernel/setup.c:476:15: warning: no previous prototype for 'crash_low_size_default' [-Wmissing-prototypes]
>      476 | unsigned long crash_low_size_default(void)
>          |               ^~~~~~~~~~~~~~~~~~~~~~

I didn't try the reproducer at above, whereas this should be an report
on an old version of patch. The patch has been updated later and merged
into linus's tree now. Please see below commit

commit 9c08a2a139fe83f217625ee0352ce531b9a666ea
Author: Baoquan He <bhe@redhat.com>
Date:   Thu Sep 14 11:31:39 2023 +0800

    x86: kdump: use generic interface to simplify crashkernel reservation code

> 
> Kconfig warnings: (for reference only)
>    WARNING: unmet direct dependencies detected for VIDEO_OV2640
>    Depends on [n]: MEDIA_SUPPORT [=m] && VIDEO_DEV [=m] && VIDEO_CAMERA_SENSOR [=n]
>    Selected by [m]:
>    - VIDEO_EM28XX_V4L2 [=m] && USB [=m] && MEDIA_SUPPORT [=m] && MEDIA_USB_SUPPORT [=y] && (MEDIA_CAMERA_SUPPORT [=y] || MEDIA_ANALOG_TV_SUPPORT [=n] || MEDIA_DIGITAL_TV_SUPPORT [=n]) && VIDEO_EM28XX [=m] && MEDIA_SUBDRV_AUTOSELECT [=y] && MEDIA_CAMERA_SUPPORT [=y]
>    WARNING: unmet direct dependencies detected for VIDEO_MT9V011
>    Depends on [n]: MEDIA_SUPPORT [=m] && VIDEO_DEV [=m] && VIDEO_CAMERA_SENSOR [=n]
>    Selected by [m]:
>    - VIDEO_EM28XX_V4L2 [=m] && USB [=m] && MEDIA_SUPPORT [=m] && MEDIA_USB_SUPPORT [=y] && (MEDIA_CAMERA_SUPPORT [=y] || MEDIA_ANALOG_TV_SUPPORT [=n] || MEDIA_DIGITAL_TV_SUPPORT [=n]) && VIDEO_EM28XX [=m] && MEDIA_SUBDRV_AUTOSELECT [=y] && MEDIA_CAMERA_SUPPORT [=y]
> 
> 
> vim +/crash_low_size_default +476 arch/x86/kernel/setup.c
> 
>    472	
>    473	/*
>    474	 * --------- Crashkernel reservation ------------------------------
>    475	 */
>  > 476	unsigned long crash_low_size_default(void)
>    477	{
>    478	#ifdef CONFIG_X86_64
>    479		return max(swiotlb_size_or_default() + (8UL << 20), 256UL << 20);
>    480	#else
>    481		return 0;
>    482	#endif
>    483	}
>    484	
> 
> -- 
> 0-DAY CI Kernel Test Service
> https://github.com/intel/lkp-tests/wiki
> 


  reply	other threads:[~2023-11-07 13:05 UTC|newest]

Thread overview: 75+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-14  3:31 [PATCH v3 0/9] kdump: use generic functions to simplify crashkernel reservation in arch Baoquan He
2023-09-14  3:31 ` Baoquan He
2023-09-14  3:31 ` Baoquan He
2023-09-14  3:31 ` Baoquan He
2023-09-14  3:31 ` [PATCH v3 1/9] crash_core.c: remove unnecessary parameter of function Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31 ` [PATCH v3 2/9] crash_core: change the prototype of function parse_crashkernel() Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31 ` [PATCH v3 3/9] crash_core: change parse_crashkernel() to support crashkernel=,high|low parsing Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-18 12:41   ` Leizhen (ThunderTown)
2023-09-18 12:41     ` Leizhen (ThunderTown)
2023-09-18 12:41     ` Leizhen (ThunderTown)
2023-09-18 12:41     ` Leizhen (ThunderTown)
2023-09-14  3:31 ` [PATCH v3 4/9] crash_core: add generic function to do reservation Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-18 12:44   ` Leizhen (ThunderTown)
2023-09-18 12:44     ` Leizhen (ThunderTown)
2023-09-18 12:44     ` Leizhen (ThunderTown)
2023-09-18 12:44     ` Leizhen (ThunderTown)
2023-09-14  3:31 ` [PATCH v3 5/9] crash_core: move crashk_*res definition into crash_core.c Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-18 12:58   ` Leizhen (ThunderTown)
2023-09-18 12:58     ` Leizhen (ThunderTown)
2023-09-18 12:58     ` Leizhen (ThunderTown)
2023-09-18 12:58     ` Leizhen (ThunderTown)
2023-09-14  3:31 ` [PATCH v3 6/9] x86: kdump: use generic interface to simplify crashkernel reservation code Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  8:12   ` kernel test robot
2023-09-14  8:12     ` kernel test robot
2023-09-14  8:12     ` kernel test robot
2023-09-14  8:12     ` kernel test robot
2023-09-15 13:13     ` Baoquan He
2023-09-15 13:13       ` Baoquan He
2023-09-15 13:13       ` Baoquan He
2023-09-15 13:13       ` Baoquan He
2023-09-14 21:36   ` kernel test robot
2023-09-16  0:29   ` [PATCH v4 " Baoquan He
2023-09-16  0:29     ` Baoquan He
2023-09-16  0:29     ` Baoquan He
2023-09-16  0:29     ` Baoquan He
2023-11-07 11:11   ` [PATCH v3 " kernel test robot
2023-11-07 13:05     ` Baoquan He [this message]
2023-09-14  3:31 ` [PATCH v3 7/9] arm64: kdump: use generic interface to simplify crashkernel reservation Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31 ` [PATCH v3 8/9] riscv: " Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-21  2:36   ` chenjiahao (C)
2023-09-21  2:36     ` chenjiahao (C)
2023-09-21  2:36     ` chenjiahao (C)
2023-09-21  2:36     ` chenjiahao (C)
2023-09-21  5:00     ` Baoquan He
2023-09-21  5:00       ` Baoquan He
2023-09-21  5:00       ` Baoquan He
2023-09-21  5:00       ` Baoquan He
2023-09-14  3:31 ` [PATCH v3 9/9] crash_core.c: remove unneeded functions Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He
2023-09-14  3:31   ` Baoquan He

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=ZUo2LHDUn9KaunJd@MiWiFi-R3L-srv \
    --to=bhe@redhat.com \
    --cc=lkp@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    /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.