Re: [edk2-devel] [PATCH 1/1] MdeModulePkg: Cache device path during LoadImage calls

2023-06-09 Thread Nolan Hergert
Any feedback? From: devel@edk2.groups.io on behalf of Nolan Hergert Sent: Wednesday, May 24, 2023 12:07 PM To: devel@edk2.groups.io Cc: Bi, Dandan ; Gao, Liming Subject: [edk2-devel] [PATCH 1/1] MdeModulePkg: Cache device path during LoadImage calls

[edk2-devel] [PATCH 1/1] MdeModulePkg: Cache device path during LoadImage calls

2023-05-24 Thread Nolan Hergert
During LoadImage, there 6-7 of the same call to CoreLocateDevicePath and can be cached during a particular call to LoadImage. For implementations with significant numbers of calls to LoadImage (>250), this change will improve the boot time by >10ms. Signed-off-by: Nolan Hergert ---

[edk2-devel] [PATCH 1/1] MdeModulePkg: Cache device path during LoadImage calls

2023-05-24 Thread Nolan Hergert
During LoadImage, there 6-7 of the same call to CoreLocateDevicePath and can be cached during a particular call to LoadImage. For implementations with significant numbers of calls to LoadImage (>250), this change will improve the boot time by >10ms. Cc: Dandan Bi Cc: Liming Gao Signed-off-by:

[edk2-devel] [PATCH 1/1] MdeModulePkg: Cache device path during LoadImage calls

2023-05-24 Thread Hergert, Nolan
>From 4282ca25cde475a4ec2b81c5e878414a5829f88b Mon Sep 17 00:00:00 2001 Message-Id: <4282ca25cde475a4ec2b81c5e878414a5829f88b.1684880087.git.nolan.herg...@intel.com> In-Reply-To: References: From: Nolan Hergert Date: Fri, 19 May 2023 14:58:00 -0700 Subject: [PATCH 1/1] MdeModulePkg: Cache