From: lgao4 Date: Fri, 16 Mar 2007 02:33:49 +0000 (+0000) Subject: Perfect the msa of the following modules, DiskIo, Partition, English and Ebc. X-Git-Tag: edk2-stable201903~23415 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=6626ad113ee5420201ea7c1f173f718978295eed Perfect the msa of the following modules, DiskIo, Partition, English and Ebc. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2480 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/EdkModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.msa b/EdkModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.msa index da662049fd..f5b93c83e4 100644 --- a/EdkModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.msa +++ b/EdkModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.msa @@ -7,7 +7,7 @@ 1.0 Component description file for DiskIo module. DiskIo driver that layers it's self on every Block IO protocol in the system. - Copyright (c) 2006, Intel Corporation + Copyright (c) 2006 - 2007, Intel Corporation All rights reserved. This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -22,8 +22,9 @@ DiskIo - + DebugLib + Recommended libary Instance is PeiDxeDebugLibReportStatusCode instance in MdePkg. UefiDriverModelLib diff --git a/EdkModulePkg/Universal/Disk/DiskIo/Dxe/diskio.c b/EdkModulePkg/Universal/Disk/DiskIo/Dxe/diskio.c index 62ae6d2b8a..d71e0aa503 100644 --- a/EdkModulePkg/Universal/Disk/DiskIo/Dxe/diskio.c +++ b/EdkModulePkg/Universal/Disk/DiskIo/Dxe/diskio.c @@ -171,7 +171,7 @@ ErrorExit: if (EFI_ERROR (Status)) { if (Private != NULL) { - gBS->FreePool (Private); + FreePool (Private); } gBS->CloseProtocol ( @@ -249,7 +249,7 @@ DiskIoDriverBindingStop ( } if (!EFI_ERROR (Status)) { - gBS->FreePool (Private); + FreePool (Private); } return Status; @@ -474,7 +474,7 @@ DiskIoReadDisk ( Done: if (PreData != NULL) { - gBS->FreePool (PreData); + FreePool (PreData); } return Status; @@ -722,7 +722,7 @@ DiskIoWriteDisk ( Done: if (PreData != NULL) { - gBS->FreePool (PreData); + FreePool (PreData); } return Status; diff --git a/EdkModulePkg/Universal/Disk/Partition/Dxe/ElTorito.c b/EdkModulePkg/Universal/Disk/Partition/Dxe/ElTorito.c index d740d24087..5d2a07ef8c 100644 --- a/EdkModulePkg/Universal/Disk/Partition/Dxe/ElTorito.c +++ b/EdkModulePkg/Universal/Disk/Partition/Dxe/ElTorito.c @@ -279,7 +279,7 @@ Returns: } } - gBS->FreePool (VolDescriptor); + FreePool (VolDescriptor); return Found; } diff --git a/EdkModulePkg/Universal/Disk/Partition/Dxe/Gpt.c b/EdkModulePkg/Universal/Disk/Partition/Dxe/Gpt.c index 4b4910a813..61a4ec5e70 100644 --- a/EdkModulePkg/Universal/Disk/Partition/Dxe/Gpt.c +++ b/EdkModulePkg/Universal/Disk/Partition/Dxe/Gpt.c @@ -310,19 +310,19 @@ Returns: Done: if (ProtectiveMbr != NULL) { - gBS->FreePool (ProtectiveMbr); + FreePool (ProtectiveMbr); } if (PrimaryHeader != NULL) { - gBS->FreePool (PrimaryHeader); + FreePool (PrimaryHeader); } if (BackupHeader != NULL) { - gBS->FreePool (BackupHeader); + FreePool (BackupHeader); } if (PartEntry != NULL) { - gBS->FreePool (PartEntry); + FreePool (PartEntry); } if (PEntryStatus != NULL) { - gBS->FreePool (PEntryStatus); + FreePool (PEntryStatus); } return GptValid; @@ -376,7 +376,7 @@ Returns: PartHdr ); if (EFI_ERROR (Status)) { - gBS->FreePool (PartHdr); + FreePool (PartHdr); return FALSE; } @@ -385,18 +385,18 @@ Returns: PartHdr->MyLBA != Lba ) { DEBUG ((EFI_D_INFO, " !Valid efi partition table header\n")); - gBS->FreePool (PartHdr); + FreePool (PartHdr); return FALSE; } CopyMem (PartHeader, PartHdr, sizeof (EFI_PARTITION_TABLE_HEADER)); if (!PartitionCheckGptEntryArrayCRC (BlockIo, DiskIo, PartHeader)) { - gBS->FreePool (PartHdr); + FreePool (PartHdr); return FALSE; } DEBUG ((EFI_D_INFO, " Valid efi partition table header\n")); - gBS->FreePool (PartHdr); + FreePool (PartHdr); return TRUE; } @@ -449,7 +449,7 @@ Returns: Ptr ); if (EFI_ERROR (Status)) { - gBS->FreePool (Ptr); + FreePool (Ptr); return FALSE; } @@ -458,11 +458,11 @@ Returns: Status = gBS->CalculateCrc32 (Ptr, Size, &Crc); if (EFI_ERROR (Status)) { DEBUG ((EFI_D_ERROR, "CheckPEntryArrayCRC: Crc calculation failed\n")); - gBS->FreePool (Ptr); + FreePool (Ptr); return FALSE; } - gBS->FreePool (Ptr); + FreePool (Ptr); return (BOOLEAN) (PartHeader->PartitionEntryArrayCRC32 == Crc); } @@ -555,8 +555,8 @@ Returns: ); Done: - gBS->FreePool (PartHdr); - gBS->FreePool (Ptr); + FreePool (PartHdr); + FreePool (Ptr); if (EFI_ERROR (Status)) { return FALSE; diff --git a/EdkModulePkg/Universal/Disk/Partition/Dxe/Mbr.c b/EdkModulePkg/Universal/Disk/Partition/Dxe/Mbr.c index f1b1de0d64..cf790d45e3 100644 --- a/EdkModulePkg/Universal/Disk/Partition/Dxe/Mbr.c +++ b/EdkModulePkg/Universal/Disk/Partition/Dxe/Mbr.c @@ -184,7 +184,7 @@ Returns: if (DevicePathType (LastDevicePathNode) == MEDIA_DEVICE_PATH && DevicePathSubType (LastDevicePathNode) == MEDIA_HARDDRIVE_DP ) { - gBS->CopyMem (&ParentHdDev, LastDevicePathNode, sizeof (ParentHdDev)); + CopyMem (&ParentHdDev, LastDevicePathNode, sizeof (ParentHdDev)); } else { LastDevicePathNode = NULL; } @@ -319,7 +319,7 @@ Returns: } Done: - gBS->FreePool (Mbr); + FreePool (Mbr); return Found; } diff --git a/EdkModulePkg/Universal/Disk/Partition/Dxe/Partition.c b/EdkModulePkg/Universal/Disk/Partition/Dxe/Partition.c index b4207d42b8..86d1cfe52b 100644 --- a/EdkModulePkg/Universal/Disk/Partition/Dxe/Partition.c +++ b/EdkModulePkg/Universal/Disk/Partition/Dxe/Partition.c @@ -384,8 +384,8 @@ PartitionDriverBindingStop ( EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER ); } else { - gBS->FreePool (Private->DevicePath); - gBS->FreePool (Private); + FreePool (Private->DevicePath); + FreePool (Private); } } @@ -653,7 +653,7 @@ Returns: Private->DevicePath = AppendDevicePathNode (ParentDevicePath, DevicePathNode); if (Private->DevicePath == NULL) { - gBS->FreePool (Private); + FreePool (Private); return EFI_OUT_OF_RESOURCES; } @@ -693,8 +693,8 @@ Returns: EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER ); } else { - gBS->FreePool (Private->DevicePath); - gBS->FreePool (Private); + FreePool (Private->DevicePath); + FreePool (Private); } return Status; diff --git a/EdkModulePkg/Universal/Disk/Partition/Dxe/Partition.msa b/EdkModulePkg/Universal/Disk/Partition/Dxe/Partition.msa index 6c21dcfc70..3ed7fef4b0 100644 --- a/EdkModulePkg/Universal/Disk/Partition/Dxe/Partition.msa +++ b/EdkModulePkg/Universal/Disk/Partition/Dxe/Partition.msa @@ -6,8 +6,11 @@ 1FA1F39E-FEFF-4aae-BD7B-38A070A3B609 1.0 Component description file for Partition module. - Partition driver that produces logical BlockIo devices from a physical BlockIo device. - Copyright (c) 2006, Intel Corporation + Partition driver produces the logical BlockIo device + that represents the bytes Start to End of the Parent Block IO + device (one partition of physical BlockIo device, + which can be one of GPT, MBR, ElTorito partition). + Copyright (c) 2006 - 2007, Intel Corporation All rights reserved. This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -22,8 +25,9 @@ Partition - + DebugLib + Recommended libary Instance is PeiDxeDebugLibReportStatusCode instance in MdePkg. UefiDriverModelLib @@ -71,12 +75,18 @@ gEfiDevicePathProtocolGuid + + gEfiDevicePathProtocolGuid + + + gEfiBlockIoProtocolGuid + gEfiPartTypeSystemPartGuid - + gEfiPartTypeUnusedGuid diff --git a/EdkModulePkg/Universal/Disk/UnicodeCollation/English/Dxe/English.msa b/EdkModulePkg/Universal/Disk/UnicodeCollation/English/Dxe/English.msa index 90cb810585..3a72998ba3 100644 --- a/EdkModulePkg/Universal/Disk/UnicodeCollation/English/Dxe/English.msa +++ b/EdkModulePkg/Universal/Disk/UnicodeCollation/English/Dxe/English.msa @@ -6,8 +6,8 @@ CD3BAFB6-50FB-4fe8-8E4E-AB74D2C1A600 1.0 Component description file for English module for unicode collation. - This driver installs EFI_UNICODE_COLLATION_PROTOCOL protocol to provide Unicode strings function. - Copyright (c) 2006, Intel Corporation + This driver installs UEFI EFI_UNICODE_COLLATION_PROTOCOL protocol to provide Unicode strings function. + Copyright (c) 2006 - 2007, Intel Corporation All rights reserved. This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -22,8 +22,9 @@ English - + DebugLib + Recommended libary Instance is PeiDxeDebugLibReportStatusCode instance in MdePkg. UefiDriverEntryPoint diff --git a/EdkModulePkg/Universal/Ebc/Dxe/Ebc.msa b/EdkModulePkg/Universal/Ebc/Dxe/Ebc.msa index 243b538b10..6b43afac65 100644 --- a/EdkModulePkg/Universal/Ebc/Dxe/Ebc.msa +++ b/EdkModulePkg/Universal/Ebc/Dxe/Ebc.msa @@ -6,8 +6,9 @@ 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 1.0 Component description file for Ebc module. - This module for the EBC virtual machine implementation. - Copyright (c) 2006, Intel Corporation + This module for the EBC virtual machine implementation produces + EBC and EBC debug support protocols. + Copyright (c) 2006 - 2007, Intel Corporation All rights reserved. This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -17,7 +18,7 @@ FRAMEWORK_BUILD_PACKAGING_SPECIFICATION 0x00000052 - IA32 X64 IPF EBC + IA32 X64 IPF false Ebc @@ -25,29 +26,22 @@ BaseLib - + DebugLib + Recommended libary Instance is PeiDxeDebugLibReportStatusCode instance in MdePkg. UefiDriverEntryPoint - - ReportStatusCodeLib - - - UefiLib - - - BaseLib - - + BaseMemoryLib + Recommended libary Instance is DxeMemoryLib instance in MdePkg. - MemoryAllocationLib + UefiBootServicesTableLib - UefiBootServicesTableLib + MemoryAllocationLib @@ -56,18 +50,18 @@ EbcExecute.c EbcExecute.h Ebc.dxs - Ia32/EbcLowLevel.asm - Ia32/EbcLowLevel.S + Ia32/EbcLowLevel.asm + Ia32/EbcLowLevel.S Ia32/EbcSupport.c - x64/EbcLowLevel.asm - x64/EbcLowLevel.S + x64/EbcLowLevel.asm + x64/EbcLowLevel.S x64/EbcSupport.c Ipf/EbcLowLevel.s Ipf/EbcSupport.c + Ipf/EbcSupport.h - diff --git a/EdkModulePkg/Universal/Ebc/Dxe/EbcInt.c b/EdkModulePkg/Universal/Ebc/Dxe/EbcInt.c index cf683295ea..52f8d9fad7 100644 --- a/EdkModulePkg/Universal/Ebc/Dxe/EbcInt.c +++ b/EdkModulePkg/Universal/Ebc/Dxe/EbcInt.c @@ -222,12 +222,9 @@ Returns: // // Allocate memory for our protocol. Then fill in the blanks. // - Status = gBS->AllocatePool ( - EfiBootServicesData, - sizeof (EFI_EBC_PROTOCOL), - (VOID **) &EbcProtocol - ); - if (Status != EFI_SUCCESS) { + EbcProtocol = AllocatePool (sizeof (EFI_EBC_PROTOCOL)); + + if (EbcProtocol == NULL) { return EFI_OUT_OF_RESOURCES; } @@ -273,7 +270,7 @@ Returns: } if (HandleBuffer != NULL) { - gBS->FreePool (HandleBuffer); + FreePool (HandleBuffer); HandleBuffer = NULL; } // @@ -287,19 +284,16 @@ Returns: EbcProtocol ); if (EFI_ERROR (Status)) { - gBS->FreePool (EbcProtocol); + FreePool (EbcProtocol); return Status; } } // // Allocate memory for our debug protocol. Then fill in the blanks. // - Status = gBS->AllocatePool ( - EfiBootServicesData, - sizeof (EFI_DEBUG_SUPPORT_PROTOCOL), - (VOID **) &EbcDebugProtocol - ); - if (Status != EFI_SUCCESS) { + EbcDebugProtocol = AllocatePool (sizeof (EFI_DEBUG_SUPPORT_PROTOCOL)); + + if (EbcDebugProtocol == NULL) { goto ErrorExit; } @@ -322,7 +316,7 @@ Returns: // This is recoverable, so free the memory and continue. // if (EFI_ERROR (Status)) { - gBS->FreePool (EbcDebugProtocol); + FreePool (EbcDebugProtocol); goto ErrorExit; } // @@ -370,11 +364,11 @@ ErrorExit: } if (HandleBuffer != NULL) { - gBS->FreePool (HandleBuffer); + FreePool (HandleBuffer); HandleBuffer = NULL; } - gBS->FreePool (EbcProtocol); + FreePool (EbcProtocol); return Status; } @@ -894,8 +888,8 @@ Returns: ThunkList = ImageList->ThunkList; while (ThunkList != NULL) { NextThunkList = ThunkList->Next; - gBS->FreePool (ThunkList->ThunkBuffer); - gBS->FreePool (ThunkList); + FreePool (ThunkList->ThunkBuffer); + FreePool (ThunkList); ThunkList = NextThunkList; } // @@ -912,7 +906,7 @@ Returns: // // Now free up the image list element // - gBS->FreePool (ImageList); + FreePool (ImageList); return EFI_SUCCESS; } @@ -970,12 +964,9 @@ Returns: // // Allocate a new one // - Status = gBS->AllocatePool ( - EfiBootServicesData, - sizeof (EBC_IMAGE_LIST), - (VOID **) &ImageList - ); - if (Status != EFI_SUCCESS) { + ImageList = AllocatePool (sizeof (EBC_IMAGE_LIST)); + + if (ImageList == NULL) { return EFI_OUT_OF_RESOURCES; } @@ -987,12 +978,9 @@ Returns: // // Ok, now create a new thunk element to add to the list // - Status = gBS->AllocatePool ( - EfiBootServicesData, - sizeof (EBC_THUNK_LIST), - (VOID **) &ThunkList - ); - if (Status != EFI_SUCCESS) { + ThunkList = AllocatePool (sizeof (EBC_THUNK_LIST)); + + if (ThunkList == NULL) { return EFI_OUT_OF_RESOURCES; } // @@ -1061,8 +1049,8 @@ Returns: // // Allocate memory for the protocol, then fill in the fields // - Status = gBS->AllocatePool (EfiBootServicesData, sizeof (EFI_EBC_VM_TEST_PROTOCOL), (VOID **) &EbcVmTestProtocol); - if (Status != EFI_SUCCESS) { + EbcVmTestProtocol = AllocatePool (sizeof (EFI_EBC_VM_TEST_PROTOCOL)); + if (EbcVmTestProtocol == NULL) { return EFI_OUT_OF_RESOURCES; } EbcVmTestProtocol->Execute = (EBC_VM_TEST_EXECUTE) EbcExecuteInstructions; @@ -1078,7 +1066,7 @@ Returns: Handle = NULL; Status = gBS->InstallProtocolInterface (&Handle, &mEfiEbcVmTestProtocolGuid, EFI_NATIVE_INTERFACE, EbcVmTestProtocol); if (EFI_ERROR (Status)) { - gBS->FreePool (EbcVmTestProtocol); + FreePool (EbcVmTestProtocol); } return Status; } diff --git a/EdkModulePkg/Universal/Ebc/Dxe/Ia32/EbcSupport.c b/EdkModulePkg/Universal/Ebc/Dxe/Ia32/EbcSupport.c index 14059d71e5..ab05449341 100644 --- a/EdkModulePkg/Universal/Ebc/Dxe/Ia32/EbcSupport.c +++ b/EdkModulePkg/Universal/Ebc/Dxe/Ia32/EbcSupport.c @@ -371,7 +371,6 @@ Returns: UINT32 Addr; INT32 Size; INT32 ThunkSize; - EFI_STATUS Status; // // Check alignment of pointer to EBC code @@ -383,12 +382,9 @@ Returns: Size = EBC_THUNK_SIZE; ThunkSize = Size; - Status = gBS->AllocatePool ( - EfiBootServicesData, - Size, - (VOID *) &Ptr - ); - if (Status != EFI_SUCCESS) { + Ptr = AllocatePool (Size); + + if (Ptr == NULL) { return EFI_OUT_OF_RESOURCES; } // diff --git a/EdkModulePkg/Universal/Ebc/Dxe/Ipf/EbcSupport.c b/EdkModulePkg/Universal/Ebc/Dxe/Ipf/EbcSupport.c index 29ee55b864..d60ab09d8a 100644 --- a/EdkModulePkg/Universal/Ebc/Dxe/Ipf/EbcSupport.c +++ b/EdkModulePkg/Universal/Ebc/Dxe/Ipf/EbcSupport.c @@ -319,7 +319,6 @@ Returns: UINT64 *Data64Ptr; UINT32 ThunkSize; UINT32 Size; - EFI_STATUS Status; // // Check alignment of pointer to EBC code, which must always be aligned @@ -335,12 +334,9 @@ Returns: // Size = EBC_THUNK_SIZE + EBC_THUNK_ALIGNMENT - 1; ThunkSize = Size; - Status = gBS->AllocatePool ( - EfiBootServicesData, - Size, - (VOID *) &Ptr - ); - if (Status != EFI_SUCCESS) { + Ptr = AllocatePool (Size); + + if (Ptr == NULL) { return EFI_OUT_OF_RESOURCES; } // @@ -872,6 +868,6 @@ Returns: Source = (VOID *) EbcSp; Destination = (VOID *) ((UINT8 *) EbcSp - FrameSize - CPU_STACK_ALIGNMENT); Destination = (VOID *) ((UINTN) ((UINTN) Destination + CPU_STACK_ALIGNMENT - 1) &~((UINTN) CPU_STACK_ALIGNMENT - 1)); - gBS->CopyMem (Destination, Source, FrameSize); + CopyMem (Destination, Source, FrameSize); EbcAsmLLCALLEX ((UINTN) CallAddr, (UINTN) Destination); } diff --git a/EdkModulePkg/Universal/Ebc/Dxe/x64/EbcSupport.c b/EdkModulePkg/Universal/Ebc/Dxe/x64/EbcSupport.c index 0b0e171eb3..cad5c6a43b 100644 --- a/EdkModulePkg/Universal/Ebc/Dxe/x64/EbcSupport.c +++ b/EdkModulePkg/Universal/Ebc/Dxe/x64/EbcSupport.c @@ -331,7 +331,6 @@ Returns: UINT64 Addr; INT32 Size; INT32 ThunkSize; - EFI_STATUS Status; // // Check alignment of pointer to EBC code @@ -343,12 +342,9 @@ Returns: Size = EBC_THUNK_SIZE; ThunkSize = Size; - Status = gBS->AllocatePool ( - EfiBootServicesData, - Size, - (VOID *) &Ptr - ); - if (Status != EFI_SUCCESS) { + Ptr = AllocatePool (Size); + + if (Ptr == NULL) { return EFI_OUT_OF_RESOURCES; } //