Lines Matching refs:efi_rts_work
47 struct efi_runtime_work efi_rts_work; variable
61 efi_rts_work.status = EFI_ABORTED; \
68 init_completion(&efi_rts_work.efi_rts_comp); \
69 INIT_WORK(&efi_rts_work.work, efi_call_rts); \
70 efi_rts_work.arg1 = _arg1; \
71 efi_rts_work.arg2 = _arg2; \
72 efi_rts_work.arg3 = _arg3; \
73 efi_rts_work.arg4 = _arg4; \
74 efi_rts_work.arg5 = _arg5; \
75 efi_rts_work.efi_rts_id = _rts; \
81 if (queue_work(efi_rts_wq, &efi_rts_work.work)) \
82 wait_for_completion(&efi_rts_work.efi_rts_comp); \
87 efi_rts_work.efi_rts_id = EFI_NONE; \
88 efi_rts_work.status; \
183 arg1 = efi_rts_work.arg1; in efi_call_rts()
184 arg2 = efi_rts_work.arg2; in efi_call_rts()
185 arg3 = efi_rts_work.arg3; in efi_call_rts()
186 arg4 = efi_rts_work.arg4; in efi_call_rts()
187 arg5 = efi_rts_work.arg5; in efi_call_rts()
189 switch (efi_rts_work.efi_rts_id) { in efi_call_rts()
247 efi_rts_work.status = status; in efi_call_rts()
248 complete(&efi_rts_work.efi_rts_comp); in efi_call_rts()
422 efi_rts_work.efi_rts_id = EFI_RESET_SYSTEM; in virt_efi_reset_system()