[esmil:visionfive 4/50] arch/riscv/lib/string.c:154:7: error: redefinition of '__memset'

From: kernel test robot
Date: Sun Jul 10 2022 - 21:32:18 EST


tree: https://github.com/esmil/linux visionfive
head: 943858df470556d0b7f3b31fcc10931603f0f3cc
commit: bdf1612f166c6ff3822236aa35c1497449fe7d35 [4/50] riscv: optimized memset
config: riscv-randconfig-r033-20220710 (https://download.01.org/0day-ci/archive/20220711/202207110842.bZK9H8Xt-lkp@xxxxxxxxx/config)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project 6ce63e267aab79ca87bf63453d34dd3909ab978d)
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/esmil/linux/commit/bdf1612f166c6ff3822236aa35c1497449fe7d35
git remote add esmil https://github.com/esmil/linux
git fetch --no-tags esmil visionfive
git checkout bdf1612f166c6ff3822236aa35c1497449fe7d35
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=riscv SHELL=/bin/bash arch/riscv/

If you fix the issue, kindly add following tag where applicable
Reported-by: kernel test robot <lkp@xxxxxxxxx>

All errors (new ones prefixed by >>):

arch/riscv/lib/string.c:90:57: warning: attribute declaration must precede definition [-Wignored-attributes]
void *memcpy(void *dest, const void *src, size_t count) __weak __alias(__memcpy);
^
include/linux/compiler_attributes.h:372:56: note: expanded from macro '__weak'
#define __weak __attribute__((__weak__))
^
arch/riscv/lib/string.c:31:7: note: previous definition is here
void *__memcpy(void *dest, const void *src, size_t count)
^
arch/riscv/lib/string.c:90:7: error: redefinition of '__memcpy'
void *memcpy(void *dest, const void *src, size_t count) __weak __alias(__memcpy);
^
arch/riscv/include/asm/string.h:21:31: note: expanded from macro 'memcpy'
#define memcpy(dst, src, len) __memcpy(dst, src, len)
^
arch/riscv/lib/string.c:31:7: note: previous definition is here
void *__memcpy(void *dest, const void *src, size_t count)
^
arch/riscv/lib/string.c:113:58: warning: attribute declaration must precede definition [-Wignored-attributes]
void *memmove(void *dest, const void *src, size_t count) __weak __alias(__memmove);
^
include/linux/compiler_attributes.h:372:56: note: expanded from macro '__weak'
#define __weak __attribute__((__weak__))
^
arch/riscv/lib/string.c:97:7: note: previous definition is here
void *__memmove(void *dest, const void *src, size_t count)
^
arch/riscv/lib/string.c:113:7: error: redefinition of '__memmove'
void *memmove(void *dest, const void *src, size_t count) __weak __alias(__memmove);
^
arch/riscv/include/asm/string.h:23:32: note: expanded from macro 'memmove'
#define memmove(dst, src, len) __memmove(dst, src, len)
^
arch/riscv/lib/string.c:97:7: note: previous definition is here
void *__memmove(void *dest, const void *src, size_t count)
^
arch/riscv/lib/string.c:154:44: warning: attribute declaration must precede definition [-Wignored-attributes]
void *memset(void *s, int c, size_t count) __weak __alias(__memset);
^
include/linux/compiler_attributes.h:372:56: note: expanded from macro '__weak'
#define __weak __attribute__((__weak__))
^
arch/riscv/lib/string.c:116:7: note: previous definition is here
void *__memset(void *s, int c, size_t count)
^
>> arch/riscv/lib/string.c:154:7: error: redefinition of '__memset'
void *memset(void *s, int c, size_t count) __weak __alias(__memset);
^
arch/riscv/include/asm/string.h:22:25: note: expanded from macro 'memset'
#define memset(s, c, n) __memset(s, c, n)
^
arch/riscv/lib/string.c:116:7: note: previous definition is here
void *__memset(void *s, int c, size_t count)
^
3 warnings and 3 errors generated.


vim +/__memset +154 arch/riscv/lib/string.c

153
> 154 void *memset(void *s, int c, size_t count) __weak __alias(__memset);

--
0-DAY CI Kernel Test Service
https://01.org/lkp