]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Universal/Network/ArpDxe/ArpImpl.c
Fixed one issue for IPF, the entry address needs 8 bytes alignment.
[mirror_edk2.git] / MdeModulePkg / Universal / Network / ArpDxe / ArpImpl.c
index b46c7047eefadaed9438b6c0e06118d77dc6deef..52b6e21652c630fa654153a80674649a92ffa654 100644 (file)
@@ -1545,10 +1545,10 @@ ArpFindCacheEntry (
 \r
   if (EntryLength != NULL) {\r
     //\r
-    // Return the entry length.\r
+    // Return the entry length, make sure its 8 bytes alignment.\r
     //\r
-    *EntryLength = sizeof (EFI_ARP_FIND_DATA) + Instance->ConfigData.SwAddressLength +\r
-                   ArpService->SnpMode.HwAddressSize;\r
+    *EntryLength = (((sizeof (EFI_ARP_FIND_DATA) + Instance->ConfigData.SwAddressLength +\r
+                   ArpService->SnpMode.HwAddressSize) + 3) & ~(0x3));\r
   }\r
 \r
   if (EntryCount != NULL) {\r