Home
last modified time | relevance | path

Searched refs:work_buf (Results 1 – 4 of 4) sorted by relevance

/Linux-v5.10/include/linux/
Dstop_machine.h34 struct cpu_stop_work *work_buf);
70 struct cpu_stop_work *work_buf) in stop_one_cpu_nowait() argument
73 INIT_WORK(&work_buf->work, stop_one_cpu_nowait_workfn); in stop_one_cpu_nowait()
74 work_buf->fn = fn; in stop_one_cpu_nowait()
75 work_buf->arg = arg; in stop_one_cpu_nowait()
76 schedule_work(&work_buf->work); in stop_one_cpu_nowait()
/Linux-v5.10/drivers/base/regmap/
Dregmap.c215 u8 *out = map->work_buf; in regmap_format_12_20_write()
227 u8 *out = map->work_buf; in regmap_format_2_6_write()
235 __be16 *out = map->work_buf; in regmap_format_4_12_write()
242 __be16 *out = map->work_buf; in regmap_format_7_9_write()
249 u8 *out = map->work_buf; in regmap_format_10_14_write()
1067 map->work_buf = kzalloc(map->format.buf_size, GFP_KERNEL); in __regmap_init()
1068 if (map->work_buf == NULL) { in __regmap_init()
1192 kfree(map->work_buf); in __regmap_init()
1484 kfree(map->work_buf); in regmap_exit()
1490 kfree(async->work_buf); in regmap_exit()
[all …]
Dinternal.h46 void *work_buf; member
63 void *work_buf; /* Scratch buffer used to format I/O */ member
/Linux-v5.10/kernel/
Dstop_machine.c368 struct cpu_stop_work *work_buf) in stop_one_cpu_nowait() argument
370 *work_buf = (struct cpu_stop_work){ .fn = fn, .arg = arg, }; in stop_one_cpu_nowait()
371 return cpu_stop_queue_work(cpu, work_buf); in stop_one_cpu_nowait()