lkml.org 
[lkml]   [2022]   [Jan]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
Subject[mingo-tip:sched/headers 195/2375] init/main.c:950:34: error: no member named 'scoped_addresses' in 'struct kcsan_ctx'; did you mean 'scoped_accesses'?
tree:   git://git.kernel.org/pub/scm/linux/kernel/git/mingo/tip.git sched/headers
head: 351ceeab2ef96ab2fc306934ddb201b44636181b
commit: 0116b9ccb23abb8af60eaf1cef4557ef993a5dc9 [195/2375] headers/deps: kcsan: Move task_struct::kcsan_ctx to per_task()
config: x86_64-randconfig-r002-20220108 (https://download.01.org/0day-ci/archive/20220109/202201090354.nbf3mWlN-lkp@intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project f3a344d2125fa37e59bae1b0874442c650a19607)
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
# https://git.kernel.org/pub/scm/linux/kernel/git/mingo/tip.git/commit/?id=0116b9ccb23abb8af60eaf1cef4557ef993a5dc9
git remote add mingo-tip git://git.kernel.org/pub/scm/linux/kernel/git/mingo/tip.git
git fetch --no-tags mingo-tip sched/headers
git checkout 0116b9ccb23abb8af60eaf1cef4557ef993a5dc9
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash

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 >>):

init/main.c:790:20: warning: no previous prototype for function 'mem_encrypt_init' [-Wmissing-prototypes]
void __init __weak mem_encrypt_init(void) { }
^
init/main.c:790:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void __init __weak mem_encrypt_init(void) { }
^
static
>> init/main.c:950:34: error: no member named 'scoped_addresses' in 'struct kcsan_ctx'; did you mean 'scoped_accesses'?
per_task(&init_task, kcsan_ctx).scoped_addresses.next = LIST_POISON1;
^~~~~~~~~~~~~~~~
scoped_accesses
include/linux/kcsan.h:55:19: note: 'scoped_accesses' declared here
struct list_head scoped_accesses;
^
init/main.c:891:13: warning: no previous prototype for function 'init_per_task_early' [-Wmissing-prototypes]
void __init init_per_task_early(void)
^
init/main.c:891:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void __init init_per_task_early(void)
^
static
2 warnings and 1 error generated.


vim +950 init/main.c

890
891 void __init init_per_task_early(void)
892 {
893 #ifdef CONFIG_THREAD_INFO_IN_TASK
894 per_task(&init_task, ti) = (struct thread_info) INIT_THREAD_INFO(init_task);
895 #endif
896 #ifdef CONFIG_POSIX_TIMERS
897 per_task(&init_task, posix_cputimers) = (struct posix_cputimers) __INIT_CPU_TIMERS(init_task);
898 #endif
899 task_thread(&init_task) = (struct thread_struct) INIT_THREAD;
900
901 INIT_LIST_HEAD(&per_task(&init_task, rt).run_list);
902 per_task(&init_task, rt).time_slice = RR_TIMESLICE;
903
904 INIT_LIST_HEAD(&per_task(&init_task, se).group_node);
905
906 per_task(&init_task, stack) = init_stack;
907
908 refcount_set(&per_task(&init_task, usage), 2);
909 #ifdef CONFIG_THREAD_INFO_IN_TASK
910 refcount_set(&per_task(&init_task, stack_refcount), 1);
911 #endif
912 #ifdef CONFIG_CGROUP_SCHED
913 per_task(&init_task, sched_task_group) = &root_task_group;
914 #endif
915 #ifdef CONFIG_TASKS_RCU
916 per_task(&init_task, rcu_tasks_idle_cpu) = -1;
917 INIT_LIST_HEAD(&per_task(&init_task, rcu_tasks_holdout_list));
918 #endif
919 #ifdef CONFIG_CPUSETS
920 per_task(&init_task, mems_allowed_seq) = (seqcount_spinlock_t) SEQCNT_SPINLOCK_ZERO(init_task.mems_allowed_seq,
921 &per_task(&init_task, alloc_lock));
922 #endif
923 per_task(&init_task, restart_block).fn = do_no_restart_syscall;
924 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
925 seqcount_init(&per_task(&init_task, vtime).seqcount);
926 per_task(&init_task, vtime).state = VTIME_SYS;
927 #endif
928 #ifdef CONFIG_PERF_EVENTS
929 mutex_init(&per_task(&init_task, perf_event_mutex));
930 INIT_LIST_HEAD(&per_task(&init_task, perf_event_list));
931 #endif
932 #ifdef CONFIG_SMP
933 plist_node_init(&per_task(&init_task, pushable_tasks), MAX_PRIO);
934 #endif
935 #ifdef CONFIG_AUDIT
936 per_task(&init_task, loginuid) = INVALID_UID;
937 #endif
938 per_task(&init_task, cpus_mask) = CPU_MASK_ALL;
939 per_task(&init_task, cpus_ptr) = &per_task(&init_task, cpus_mask);
940 INIT_LIST_HEAD(&per_task(&init_task, pending).list);
941 #ifdef CONFIG_RT_MUTEXES
942 per_task(&init_task, pi_waiters) = RB_ROOT_CACHED;
943 #endif
944 #ifndef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
945 raw_spin_lock_init(&per_task(&init_task, prev_cputime).lock);
946 #endif
947 spin_lock_init(&per_task(&init_task, alloc_lock));
948 raw_spin_lock_init(&per_task(&init_task, pi_lock));
949 #ifdef CONFIG_KCSAN
> 950 per_task(&init_task, kcsan_ctx).scoped_addresses.next = LIST_POISON1;
951 #endif
952 }
953

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

\
 
 \ /
  Last update: 2022-01-08 20:47    [W:0.233 / U:0.040 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site