Home
last modified time | relevance | path

Searched refs:csd (Results 1 – 3 of 3) sorted by relevance

/kernel/
Dsmp.c81 call_single_data_t csd; member
218 static void __csd_lock_record(struct __call_single_data *csd) in __csd_lock_record() argument
220 if (!csd) { in __csd_lock_record()
225 __this_cpu_write(cur_csd_func, csd->func); in __csd_lock_record()
226 __this_cpu_write(cur_csd_info, csd->info); in __csd_lock_record()
228 __this_cpu_write(cur_csd, csd); in __csd_lock_record()
233 static __always_inline void csd_lock_record(struct __call_single_data *csd) in csd_lock_record() argument
236 __csd_lock_record(csd); in csd_lock_record()
239 static int csd_lock_wait_getcpu(struct __call_single_data *csd) in csd_lock_wait_getcpu() argument
243 csd_type = CSD_TYPE(csd); in csd_lock_wait_getcpu()
[all …]
Dup.c28 int smp_call_function_single_async(int cpu, struct __call_single_data *csd) in smp_call_function_single_async() argument
33 csd->func(csd->info); in smp_call_function_single_async()
/kernel/debug/
Ddebug_core.c243 call_single_data_t *csd; in kgdb_roundup_cpus() local
253 csd = &per_cpu(kgdb_roundup_csd, cpu); in kgdb_roundup_cpus()
267 ret = smp_call_function_single_async(cpu, csd); in kgdb_roundup_cpus()