All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [RFC PATCH v12 05/11] time: Add mechanism to recognize clocksource in time_get_snapshot
Date: Sat, 23 May 2020 11:35:50 +0800	[thread overview]
Message-ID: <202005231104.bGdo82jB%lkp@intel.com> (raw)
In-Reply-To: <20200522083724.38182-6-jianyong.wu@arm.com>

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

Hi Jianyong,

[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on linus/master]
[also build test WARNING on v5.7-rc6 next-20200519]
[cannot apply to tip/timers/core kvmarm/next kvm/linux-next]
[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/Jianyong-Wu/Enable-ptp_kvm-for-arm64/20200522-164254
base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 051143e1602d90ea71887d92363edd539d411de5
config: x86_64-defconfig (attached as .config)
compiler: gcc-7 (Ubuntu 7.5.0-6ubuntu2) 7.5.0
reproduce (this is a W=1 build):
        # save the attached .config to linux build tree
        make ARCH=x86_64 

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

smatch warnings:
kernel/time/clocksource.c:931 __clocksource_register_scale() warn: inconsistent indenting

vim +931 kernel/time/clocksource.c

   913	
   914	/**
   915	 * __clocksource_register_scale - Used to install new clocksources
   916	 * @cs:		clocksource to be registered
   917	 * @scale:	Scale factor multiplied against freq to get clocksource hz
   918	 * @freq:	clocksource frequency (cycles per second) divided by scale
   919	 *
   920	 * Returns -EBUSY if registration fails, zero otherwise.
   921	 *
   922	 * This *SHOULD NOT* be called directly! Please use the
   923	 * clocksource_register_hz() or clocksource_register_khz helper functions.
   924	 */
   925	int __clocksource_register_scale(struct clocksource *cs, u32 scale, u32 freq)
   926	{
   927		unsigned long flags;
   928	
   929		clocksource_arch_init(cs);
   930	
 > 931	if (WARN_ON_ONCE((unsigned int)cs->id >= CSID_MAX))
   932			cs->id = CSID_GENERIC;
   933	

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

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 29100 bytes --]

  reply	other threads:[~2020-05-23  3:35 UTC|newest]

Thread overview: 95+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-22  8:37 [RFC PATCH v12 0/11] Enable ptp_kvm for arm64 Jianyong Wu
2020-05-22  8:37 ` Jianyong Wu
2020-05-22  8:37 ` Jianyong Wu
2020-05-22  8:37 ` [RFC PATCH v12 01/11] arm64: Probe for the presence of KVM hypervisor services during boot Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37 ` [RFC PATCH v12 02/11] arm/arm64: KVM: Advertise KVM UID to guests via SMCCC Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37 ` [RFC PATCH v12 03/11] psci: export smccc conduit get helper Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22 13:12   ` Sudeep Holla
2020-05-22 13:12     ` Sudeep Holla
2020-05-22 13:12     ` Sudeep Holla
2020-05-25  1:37     ` Jianyong Wu
2020-05-25  1:37       ` Jianyong Wu
2020-05-25  1:37       ` Jianyong Wu
2020-05-26 10:10       ` Sudeep Holla
2020-05-26 10:10         ` Sudeep Holla
2020-05-26 10:10         ` Sudeep Holla
2020-05-27  1:18         ` Jianyong Wu
2020-05-27  1:18           ` Jianyong Wu
2020-05-27  1:18           ` Jianyong Wu
2020-05-22  8:37 ` [RFC PATCH v12 04/11] ptp: Reorganize ptp_kvm modules to make it arch-independent Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37 ` [RFC PATCH v12 05/11] time: Add mechanism to recognize clocksource in time_get_snapshot Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-23  3:35   ` kbuild test robot [this message]
2020-05-28 16:36   ` Thomas Gleixner
2020-05-28 16:36     ` Thomas Gleixner
2020-05-28 16:36     ` Thomas Gleixner
2020-05-29  1:05     ` Jianyong Wu
2020-05-29  1:05       ` Jianyong Wu
2020-05-29  1:05       ` Jianyong Wu
2020-05-22  8:37 ` [RFC PATCH v12 06/11] clocksource: Add clocksource id for arm arch counter Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37 ` [RFC PATCH v12 07/11] psci: Add hypercall service for kvm ptp Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22 14:18   ` Steven Price
2020-05-22 14:18     ` Steven Price
2020-05-22 14:18     ` Steven Price
2020-05-25  2:11     ` Jianyong Wu
2020-05-25  2:11       ` Jianyong Wu
2020-05-25  2:11       ` Jianyong Wu
2020-05-26 11:02       ` Steven Price
2020-05-26 11:02         ` Steven Price
2020-05-26 11:02         ` Steven Price
2020-05-27  6:06         ` Jianyong Wu
2020-05-27  6:06           ` Jianyong Wu
2020-05-27  6:06           ` Jianyong Wu
2020-05-22  8:37 ` [RFC PATCH v12 08/11] ptp: arm64: Enable ptp_kvm for arm/arm64 Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-26 14:24   ` kbuild test robot
2020-05-22  8:37 ` [RFC PATCH v12 09/11] ptp: extend input argument for getcrosstimestamp API Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-24  1:42   ` Richard Cochran
2020-05-24  1:42     ` Richard Cochran
2020-05-24  1:42     ` Richard Cochran
2020-05-22  8:37 ` [RFC PATCH v12 10/11] arm64: add mechanism to let user choose which counter to return Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-24  1:47   ` Richard Cochran
2020-05-24  1:47     ` Richard Cochran
2020-05-24  1:47     ` Richard Cochran
2020-05-24  2:11   ` Richard Cochran
2020-05-24  2:11     ` Richard Cochran
2020-05-24  2:11     ` Richard Cochran
2020-05-25  4:50     ` Jianyong Wu
2020-05-25  4:50       ` Jianyong Wu
2020-05-25  4:50       ` Jianyong Wu
2020-05-25  6:16       ` Richard Cochran
2020-05-25  6:16         ` Richard Cochran
2020-05-25  6:16         ` Richard Cochran
2020-05-25  6:29         ` Jianyong Wu
2020-05-25  6:29           ` Jianyong Wu
2020-05-25  6:29           ` Jianyong Wu
2020-05-25  9:17     ` Marc Zyngier
2020-05-25  9:17       ` Marc Zyngier
2020-05-25  9:17       ` Marc Zyngier
2020-05-25 14:18       ` Jianyong Wu
2020-05-25 14:18         ` Jianyong Wu
2020-05-25 14:18         ` Jianyong Wu
2020-05-25 15:28         ` Marc Zyngier
2020-05-25 15:28           ` Marc Zyngier
2020-05-25 15:28           ` Marc Zyngier
2020-05-22  8:37 ` [RFC PATCH v12 11/11] arm64: Add kvm capability check extension for ptp_kvm Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu
2020-05-22  8:37   ` Jianyong Wu

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=202005231104.bGdo82jB%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.