Lines Matching defs:wfc
5136 struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
5138 wfc->ret = wfc->fn(wfc->arg);
5154 struct work_for_cpu wfc = { .fn = fn, .arg = arg };
5156 INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
5157 schedule_work_on(cpu, &wfc.work);
5158 flush_work(&wfc.work);
5159 destroy_work_on_stack(&wfc.work);
5160 return wfc.ret;