projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8101dd3
)
efi_loader: EVT_NOTIFY_SIGNAL events
author
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Sat, 4 May 2019 22:07:34 +0000
(
00:07
+0200)
committer
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Tue, 7 May 2019 19:10:04 +0000
(21:10 +0200)
The notification function of events of type EVT_NOTIFY_SIGNAL should always
be queued when SignalEvent() is called.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
lib/efi_loader/efi_boottime.c
patch
|
blob
|
history
diff --git
a/lib/efi_loader/efi_boottime.c
b/lib/efi_loader/efi_boottime.c
index 1ea96dab6c3e01100325f3124a133d7c981efb62..b6dfb3916f72d5ab821ba41f679f561aac3d7980 100644
(file)
--- a/
lib/efi_loader/efi_boottime.c
+++ b/
lib/efi_loader/efi_boottime.c
@@
-239,7
+239,7
@@
void efi_signal_event(struct efi_event *event, bool check_tpl)
if (evt->is_queued)
efi_queue_event(evt, check_tpl);
}
- } else
if (!event->is_signaled)
{
+ } else {
event->is_signaled = true;
if (event->type & EVT_NOTIFY_SIGNAL)
efi_queue_event(event, check_tpl);