From: kernel test robot <lkp@intel.com>
To: "André Almeida" <andrealmeid@collabora.com>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org
Subject: Re: [PATCH v2 2/5] futex2: Implement vectorized wait
Date: Sun, 5 Sep 2021 08:58:25 +0800 [thread overview]
Message-ID: <202109050827.kJKaRvi1-lkp@intel.com> (raw)
In-Reply-To: <20210904231159.13292-3-andrealmeid@collabora.com>
[-- Attachment #1: Type: text/plain, Size: 6133 bytes --]
Hi "André,
I love your patch! Yet something to improve:
[auto build test ERROR on linus/master]
[also build test ERROR on next-20210903]
[cannot apply to tip/locking/core asm-generic/master tip/x86/asm v5.14]
[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/Andr-Almeida/futex2-Add-wait-on-multiple-futexes-syscall/20210905-071424
base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 49624efa65ac9889f4e7c7b2452b2e6ce42ba37d
config: riscv-randconfig-r004-20210905 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 6fe2beba7d2a41964af658c8c59dd172683ef739)
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
# install riscv cross compiling tool for clang build
# apt-get install binutils-riscv64-linux-gnu
# https://github.com/0day-ci/linux/commit/9bd5ae4e55f30178347d0bc62e16ce0f009e78e0
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Andr-Almeida/futex2-Add-wait-on-multiple-futexes-syscall/20210905-071424
git checkout 9bd5ae4e55f30178347d0bc62e16ce0f009e78e0
# save the attached .config to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross O=build_dir ARCH=riscv SHELL=/bin/bash arch/riscv/kernel/ kernel/time/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All error/warnings (new ones prefixed by >>):
In file included from arch/riscv/kernel/setup.c:22:
In file included from include/linux/crash_dump.h:5:
In file included from include/linux/kexec.h:25:
>> include/linux/compat.h:691:40: warning: declaration of 'struct futex_waitv' will not be visible outside of this function [-Wvisibility]
asmlinkage long sys_futex_waitv(struct futex_waitv *waiters,
^
1 warning generated.
--
In file included from arch/riscv/kernel/syscall_table.c:18:
In file included from arch/riscv/include/asm/unistd.h:14:
In file included from arch/riscv/include/uapi/asm/unistd.h:24:
>> include/uapi/asm-generic/unistd.h:884:29: error: use of undeclared identifier 'sys_futex_waitv'
__SC_COMP(__NR_futex_waitv, sys_futex_waitv, compat_sys_futex_waitv)
^
1 error generated.
--
In file included from kernel/time/timer.c:45:
>> include/linux/compat.h:691:40: warning: declaration of 'struct futex_waitv' will not be visible outside of this function [-Wvisibility]
asmlinkage long sys_futex_waitv(struct futex_waitv *waiters,
^
kernel/time/timer.c:1312:20: warning: unused function 'del_timer_wait_running' [-Wunused-function]
static inline void del_timer_wait_running(struct timer_list *timer) { }
^
2 warnings generated.
--
In file included from kernel/time/hrtimer.c:43:
>> include/linux/compat.h:691:40: warning: declaration of 'struct futex_waitv' will not be visible outside of this function [-Wvisibility]
asmlinkage long sys_futex_waitv(struct futex_waitv *waiters,
^
kernel/time/hrtimer.c:120:21: warning: initializer overrides prior initialization of this subobject [-Winitializer-overrides]
[CLOCK_REALTIME] = HRTIMER_BASE_REALTIME,
^~~~~~~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:118:27: note: previous initialization is here
[0 ... MAX_CLOCKS - 1] = HRTIMER_MAX_CLOCK_BASES,
^~~~~~~~~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:121:22: warning: initializer overrides prior initialization of this subobject [-Winitializer-overrides]
[CLOCK_MONOTONIC] = HRTIMER_BASE_MONOTONIC,
^~~~~~~~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:118:27: note: previous initialization is here
[0 ... MAX_CLOCKS - 1] = HRTIMER_MAX_CLOCK_BASES,
^~~~~~~~~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:122:21: warning: initializer overrides prior initialization of this subobject [-Winitializer-overrides]
[CLOCK_BOOTTIME] = HRTIMER_BASE_BOOTTIME,
^~~~~~~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:118:27: note: previous initialization is here
[0 ... MAX_CLOCKS - 1] = HRTIMER_MAX_CLOCK_BASES,
^~~~~~~~~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:123:17: warning: initializer overrides prior initialization of this subobject [-Winitializer-overrides]
[CLOCK_TAI] = HRTIMER_BASE_TAI,
^~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:118:27: note: previous initialization is here
[0 ... MAX_CLOCKS - 1] = HRTIMER_MAX_CLOCK_BASES,
^~~~~~~~~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:276:20: warning: unused function 'is_migration_base' [-Wunused-function]
static inline bool is_migration_base(struct hrtimer_clock_base *base)
^
kernel/time/hrtimer.c:650:19: warning: unused function 'hrtimer_hres_active' [-Wunused-function]
static inline int hrtimer_hres_active(void)
^
kernel/time/hrtimer.c:1887:20: warning: unused function '__hrtimer_peek_ahead_timers' [-Wunused-function]
static inline void __hrtimer_peek_ahead_timers(void) { }
^
8 warnings generated.
vim +/sys_futex_waitv +884 include/uapi/asm-generic/unistd.h
882
883 #define __NR_futex_waitv 449
> 884 __SC_COMP(__NR_futex_waitv, sys_futex_waitv, compat_sys_futex_waitv)
885
---
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: 38004 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 v2 2/5] futex2: Implement vectorized wait
Date: Sun, 05 Sep 2021 08:58:25 +0800 [thread overview]
Message-ID: <202109050827.kJKaRvi1-lkp@intel.com> (raw)
In-Reply-To: <20210904231159.13292-3-andrealmeid@collabora.com>
[-- Attachment #1: Type: text/plain, Size: 6244 bytes --]
Hi "André,
I love your patch! Yet something to improve:
[auto build test ERROR on linus/master]
[also build test ERROR on next-20210903]
[cannot apply to tip/locking/core asm-generic/master tip/x86/asm v5.14]
[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/Andr-Almeida/futex2-Add-wait-on-multiple-futexes-syscall/20210905-071424
base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 49624efa65ac9889f4e7c7b2452b2e6ce42ba37d
config: riscv-randconfig-r004-20210905 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 6fe2beba7d2a41964af658c8c59dd172683ef739)
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
# install riscv cross compiling tool for clang build
# apt-get install binutils-riscv64-linux-gnu
# https://github.com/0day-ci/linux/commit/9bd5ae4e55f30178347d0bc62e16ce0f009e78e0
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Andr-Almeida/futex2-Add-wait-on-multiple-futexes-syscall/20210905-071424
git checkout 9bd5ae4e55f30178347d0bc62e16ce0f009e78e0
# save the attached .config to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross O=build_dir ARCH=riscv SHELL=/bin/bash arch/riscv/kernel/ kernel/time/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All error/warnings (new ones prefixed by >>):
In file included from arch/riscv/kernel/setup.c:22:
In file included from include/linux/crash_dump.h:5:
In file included from include/linux/kexec.h:25:
>> include/linux/compat.h:691:40: warning: declaration of 'struct futex_waitv' will not be visible outside of this function [-Wvisibility]
asmlinkage long sys_futex_waitv(struct futex_waitv *waiters,
^
1 warning generated.
--
In file included from arch/riscv/kernel/syscall_table.c:18:
In file included from arch/riscv/include/asm/unistd.h:14:
In file included from arch/riscv/include/uapi/asm/unistd.h:24:
>> include/uapi/asm-generic/unistd.h:884:29: error: use of undeclared identifier 'sys_futex_waitv'
__SC_COMP(__NR_futex_waitv, sys_futex_waitv, compat_sys_futex_waitv)
^
1 error generated.
--
In file included from kernel/time/timer.c:45:
>> include/linux/compat.h:691:40: warning: declaration of 'struct futex_waitv' will not be visible outside of this function [-Wvisibility]
asmlinkage long sys_futex_waitv(struct futex_waitv *waiters,
^
kernel/time/timer.c:1312:20: warning: unused function 'del_timer_wait_running' [-Wunused-function]
static inline void del_timer_wait_running(struct timer_list *timer) { }
^
2 warnings generated.
--
In file included from kernel/time/hrtimer.c:43:
>> include/linux/compat.h:691:40: warning: declaration of 'struct futex_waitv' will not be visible outside of this function [-Wvisibility]
asmlinkage long sys_futex_waitv(struct futex_waitv *waiters,
^
kernel/time/hrtimer.c:120:21: warning: initializer overrides prior initialization of this subobject [-Winitializer-overrides]
[CLOCK_REALTIME] = HRTIMER_BASE_REALTIME,
^~~~~~~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:118:27: note: previous initialization is here
[0 ... MAX_CLOCKS - 1] = HRTIMER_MAX_CLOCK_BASES,
^~~~~~~~~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:121:22: warning: initializer overrides prior initialization of this subobject [-Winitializer-overrides]
[CLOCK_MONOTONIC] = HRTIMER_BASE_MONOTONIC,
^~~~~~~~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:118:27: note: previous initialization is here
[0 ... MAX_CLOCKS - 1] = HRTIMER_MAX_CLOCK_BASES,
^~~~~~~~~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:122:21: warning: initializer overrides prior initialization of this subobject [-Winitializer-overrides]
[CLOCK_BOOTTIME] = HRTIMER_BASE_BOOTTIME,
^~~~~~~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:118:27: note: previous initialization is here
[0 ... MAX_CLOCKS - 1] = HRTIMER_MAX_CLOCK_BASES,
^~~~~~~~~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:123:17: warning: initializer overrides prior initialization of this subobject [-Winitializer-overrides]
[CLOCK_TAI] = HRTIMER_BASE_TAI,
^~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:118:27: note: previous initialization is here
[0 ... MAX_CLOCKS - 1] = HRTIMER_MAX_CLOCK_BASES,
^~~~~~~~~~~~~~~~~~~~~~~
kernel/time/hrtimer.c:276:20: warning: unused function 'is_migration_base' [-Wunused-function]
static inline bool is_migration_base(struct hrtimer_clock_base *base)
^
kernel/time/hrtimer.c:650:19: warning: unused function 'hrtimer_hres_active' [-Wunused-function]
static inline int hrtimer_hres_active(void)
^
kernel/time/hrtimer.c:1887:20: warning: unused function '__hrtimer_peek_ahead_timers' [-Wunused-function]
static inline void __hrtimer_peek_ahead_timers(void) { }
^
8 warnings generated.
vim +/sys_futex_waitv +884 include/uapi/asm-generic/unistd.h
882
883 #define __NR_futex_waitv 449
> 884 __SC_COMP(__NR_futex_waitv, sys_futex_waitv, compat_sys_futex_waitv)
885
---
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: 38004 bytes --]
next prev parent reply other threads:[~2021-09-05 0:59 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-04 23:11 [PATCH v2 0/5] futex2: Add wait on multiple futexes syscall André Almeida
2021-09-04 23:11 ` [PATCH v2 1/5] futex: Prepare for futex_wait_multiple() André Almeida
2021-09-04 23:11 ` [PATCH v2 2/5] futex2: Implement vectorized wait André Almeida
2021-09-05 0:58 ` kernel test robot [this message]
2021-09-05 0:58 ` kernel test robot
2021-09-05 0:59 ` kernel test robot
2021-09-04 23:11 ` [PATCH v2 3/5] futex2: wire up syscall for x86 André Almeida
2021-09-05 10:14 ` kernel test robot
2021-09-05 10:14 ` kernel test robot
2021-09-04 23:11 ` [PATCH v2 4/5] selftests: futex2: Add waitv test André Almeida
2021-09-04 23:11 ` [PATCH v2 5/5] selftests: futex2: Test futex_waitv timeout André Almeida
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=202109050827.kJKaRvi1-lkp@intel.com \
--to=lkp@intel.com \
--cc=andrealmeid@collabora.com \
--cc=kbuild-all@lists.01.org \
--cc=llvm@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.