]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
efi_loader: event queueing
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sun, 27 Dec 2020 23:25:34 +0000 (00:25 +0100)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Thu, 31 Dec 2020 13:33:32 +0000 (14:33 +0100)
When a new event is queued we have to process the event queue by calling
efi_process_event_queue(). But there is not reason to call the function
when the event is not queueable.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
lib/efi_loader/efi_boottime.c

index b799fcf1f22f3a7b64bcaa5e61fdeb599369efcb..b2cb0160c08f47444f64a071200f084db2ed4b35 100644 (file)
@@ -247,8 +247,8 @@ static void efi_queue_event(struct efi_event *event)
                }
                if (event)
                        list_add_tail(&event->queue_link, &efi_event_queue);
+               efi_process_event_queue();
        }
-       efi_process_event_queue();
 }
 
 /**