wfc              5077 kernel/workqueue.c 	struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
wfc              5079 kernel/workqueue.c 	wfc->ret = wfc->fn(wfc->arg);
wfc              5095 kernel/workqueue.c 	struct work_for_cpu wfc = { .fn = fn, .arg = arg };
wfc              5097 kernel/workqueue.c 	INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
wfc              5098 kernel/workqueue.c 	schedule_work_on(cpu, &wfc.work);
wfc              5099 kernel/workqueue.c 	flush_work(&wfc.work);
wfc              5100 kernel/workqueue.c 	destroy_work_on_stack(&wfc.work);
wfc              5101 kernel/workqueue.c 	return wfc.ret;