Thanks Star,

How about removing the comments that mention 'UsbHcUnlinkMemBlock' (3 
occurrences, in UsbHcFreeMemPool() and UsbHcFreeMem()) to avoid possible 
confusion?

Best Regards,
Hao Wu

> -----Original Message-----
> From: Zeng, Star <star.z...@intel.com>
> Sent: Friday, August 5, 2022 7:44 PM
> To: devel@edk2.groups.io
> Cc: Zeng, Star <star.z...@intel.com>; Wu, Hao A <hao.a...@intel.com>; Ni,
> Ray <ray...@intel.com>; Sun, Zhikai <zhikai....@intel.com>
> Subject: [PATCH] MdeModulePkg XhciPei: Fix dead loop issue in
> UsbHcFreeMemPool()
> 
> Use Block->Next instead of Pool->Head->Next, otherwise the for loop will be
> not able to come out.
> It will also match with the UsbHcFreeMemPool() in EhciPei.
> 
> Cc: Hao A Wu <hao.a...@intel.com>
> Cc: Ray Ni <ray...@intel.com>
> Cc: Zhikai Sun <zhikai....@intel.com>
> Signed-off-by: Star Zeng <star.z...@intel.com>
> ---
>  MdeModulePkg/Bus/Pci/XhciPei/UsbHcMem.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/MdeModulePkg/Bus/Pci/XhciPei/UsbHcMem.c
> b/MdeModulePkg/Bus/Pci/XhciPei/UsbHcMem.c
> index c64b38fcfc89..148425ae844e 100644
> --- a/MdeModulePkg/Bus/Pci/XhciPei/UsbHcMem.c
> +++ b/MdeModulePkg/Bus/Pci/XhciPei/UsbHcMem.c
> @@ -385,7 +385,7 @@ UsbHcFreeMemPool (
>    // UsbHcUnlinkMemBlock can't be used to unlink and free the   // first 
> block.
> //-  for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next)
> {+  for (Block = Pool->Head->Next; Block != NULL; Block = Block->Next) {     
> //
> UsbHcUnlinkMemBlock (Pool->Head, Block);     UsbHcFreeMemBlock (Pool,
> Block);   }--
> 2.33.1.windows.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#92186): https://edk2.groups.io/g/devel/message/92186
Mute This Topic: https://groups.io/mt/92833071/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Reply via email to