From: kernel test robot <lkp@intel.com>
To: "zhaoyan.liao" <zhaoyan.liao@linux.alibaba.com>,
tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com,
dwmw@amazon.co.uk
Cc: kbuild-all@lists.01.org, linux-kernel@vger.kernel.org,
kernel-janitors@vger.kernel.org, songmuchun@bytedance.com,
likunkun@bytedance.com, guancheng.rjk@alibaba-inc.com,
"zhaoyan.liao" <zhaoyan.liao@linux.alibaba.com>
Subject: Re: [PATCH] use 64bit timer for hpet
Date: Fri, 2 Jul 2021 23:57:05 +0800 [thread overview]
Message-ID: <202107022344.sgWZjfRf-lkp@intel.com> (raw)
In-Reply-To: <1625213625-25745-1-git-send-email-zhaoyan.liao@linux.alibaba.com>
[-- Attachment #1: Type: text/plain, Size: 2287 bytes --]
Hi "zhaoyan.liao",
Thank you for the patch! Yet something to improve:
[auto build test ERROR on tip/x86/core]
[also build test ERROR on v5.13 next-20210701]
[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/zhaoyan-liao/use-64bit-timer-for-hpet/20210702-161515
base: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git 2c88d45edbb89029c1190bb3b136d2602f057c98
config: i386-randconfig-c021-20210628 (attached as .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/905ed014f601086571e608c13b14319c2f56a95c
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review zhaoyan-liao/use-64bit-timer-for-hpet/20210702-161515
git checkout 905ed014f601086571e608c13b14319c2f56a95c
# save the attached .config to linux build tree
make W=1 ARCH=i386
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
arch/x86/kernel/hpet.c: In function 'hpet_readq':
>> arch/x86/kernel/hpet.c:88:9: error: implicit declaration of function 'readq'; did you mean 'readl'? [-Werror=implicit-function-declaration]
88 | return readq(hpet_virt_address + a);
| ^~~~~
| readl
arch/x86/kernel/hpet.c: In function 'hpet_writeq':
>> arch/x86/kernel/hpet.c:93:2: error: implicit declaration of function 'writeq'; did you mean 'writel'? [-Werror=implicit-function-declaration]
93 | writeq(d, hpet_virt_address + a);
| ^~~~~~
| writel
cc1: some warnings being treated as errors
vim +88 arch/x86/kernel/hpet.c
85
86 inline unsigned long hpet_readq(unsigned int a)
87 {
> 88 return readq(hpet_virt_address + a);
89 }
90
91 static inline void hpet_writeq(unsigned long d, unsigned int a)
92 {
> 93 writeq(d, hpet_virt_address + a);
94 }
95
---
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: 45040 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH] use 64bit timer for hpet
Date: Fri, 02 Jul 2021 23:57:05 +0800 [thread overview]
Message-ID: <202107022344.sgWZjfRf-lkp@intel.com> (raw)
In-Reply-To: <1625213625-25745-1-git-send-email-zhaoyan.liao@linux.alibaba.com>
[-- Attachment #1: Type: text/plain, Size: 2346 bytes --]
Hi "zhaoyan.liao",
Thank you for the patch! Yet something to improve:
[auto build test ERROR on tip/x86/core]
[also build test ERROR on v5.13 next-20210701]
[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/zhaoyan-liao/use-64bit-timer-for-hpet/20210702-161515
base: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git 2c88d45edbb89029c1190bb3b136d2602f057c98
config: i386-randconfig-c021-20210628 (attached as .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/905ed014f601086571e608c13b14319c2f56a95c
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review zhaoyan-liao/use-64bit-timer-for-hpet/20210702-161515
git checkout 905ed014f601086571e608c13b14319c2f56a95c
# save the attached .config to linux build tree
make W=1 ARCH=i386
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
arch/x86/kernel/hpet.c: In function 'hpet_readq':
>> arch/x86/kernel/hpet.c:88:9: error: implicit declaration of function 'readq'; did you mean 'readl'? [-Werror=implicit-function-declaration]
88 | return readq(hpet_virt_address + a);
| ^~~~~
| readl
arch/x86/kernel/hpet.c: In function 'hpet_writeq':
>> arch/x86/kernel/hpet.c:93:2: error: implicit declaration of function 'writeq'; did you mean 'writel'? [-Werror=implicit-function-declaration]
93 | writeq(d, hpet_virt_address + a);
| ^~~~~~
| writel
cc1: some warnings being treated as errors
vim +88 arch/x86/kernel/hpet.c
85
86 inline unsigned long hpet_readq(unsigned int a)
87 {
> 88 return readq(hpet_virt_address + a);
89 }
90
91 static inline void hpet_writeq(unsigned long d, unsigned int a)
92 {
> 93 writeq(d, hpet_virt_address + a);
94 }
95
---
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: 45040 bytes --]
next prev parent reply other threads:[~2021-07-02 15:57 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-02 8:13 [PATCH] use 64bit timer for hpet zhaoyan.liao
2021-07-02 15:57 ` kernel test robot [this message]
2021-07-02 15:57 ` kernel test robot
2021-07-07 10:04 ` Thomas Gleixner
2021-07-08 3:11 ` Linux
2021-07-08 11:17 ` Thomas Gleixner
2021-07-12 4:52 ` Linux
2021-07-12 7:25 ` Thomas Gleixner
2021-07-13 1:43 ` Linux
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=202107022344.sgWZjfRf-lkp@intel.com \
--to=lkp@intel.com \
--cc=dwmw@amazon.co.uk \
--cc=guancheng.rjk@alibaba-inc.com \
--cc=hpa@zytor.com \
--cc=kbuild-all@lists.01.org \
--cc=kernel-janitors@vger.kernel.org \
--cc=likunkun@bytedance.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=songmuchun@bytedance.com \
--cc=tglx@linutronix.de \
--cc=zhaoyan.liao@linux.alibaba.com \
/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.