]> git.proxmox.com Git - mirror_edk2.git/commitdiff
OvmfPkg/SmmCpuFeaturesLib: drop obsolete API implementation
authorLaszlo Ersek <lersek@redhat.com>
Tue, 3 Jan 2023 15:02:44 +0000 (16:02 +0100)
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Wed, 4 Jan 2023 09:45:06 +0000 (09:45 +0000)
Commit 0426115b6738 ("UefiCpuPkg: Remove unused API in
SmmCpuFeaturesLib.h", 2022-12-21) removed the declaration of the function
SmmCpuFeaturesAllocatePageTableMemory() from the "SmmCpuFeaturesLib.h"
library class header.

Remove the API's (null-)implementation from OvmfPkg/SmmCpuFeaturesLib as
well.

Testing: OVMF builds, boots, and suspends/resumes (see earlier in this
series).

Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Jordan Justen <jordan.l.justen@intel.com>
Bugzilla: https://bugzilla.tianocore.org/show_bug.cgi?id=4235
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
OvmfPkg/Library/SmmCpuFeaturesLib/SmmCpuFeaturesLib.c

index 9297cc5fa93a47641310d8d7f1272b201f6baf8e..6693666d043f812767ef8682f009fd0f6f0e94fa 100644 (file)
@@ -1348,34 +1348,3 @@ SmmCpuFeaturesCompleteSmmReadyToLock (
   )\r
 {\r
 }\r
-\r
-/**\r
-  This API provides a method for a CPU to allocate a specific region for\r
-  storing page tables.\r
-\r
-  This API can be called more once to allocate memory for page tables.\r
-\r
-  Allocates the number of 4KB pages of type EfiRuntimeServicesData and returns\r
-  a pointer to the allocated buffer.  The buffer returned is aligned on a 4KB\r
-  boundary.  If Pages is 0, then NULL is returned.  If there is not enough\r
-  memory remaining to satisfy the request, then NULL is returned.\r
-\r
-  This function can also return NULL if there is no preference on where the\r
-  page tables are allocated in SMRAM.\r
-\r
-  @param  Pages                 The number of 4 KB pages to allocate.\r
-\r
-  @return A pointer to the allocated buffer for page tables.\r
-  @retval NULL      Fail to allocate a specific region for storing page tables,\r
-                    Or there is no preference on where the page tables are\r
-                    allocated in SMRAM.\r
-\r
-**/\r
-VOID *\r
-EFIAPI\r
-SmmCpuFeaturesAllocatePageTableMemory (\r
-  IN UINTN  Pages\r
-  )\r
-{\r
-  return NULL;\r
-}\r