]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
lmb: Remove lmb_alloc_flags()
authorIlias Apalodimas <ilias.apalodimas@linaro.org>
Wed, 23 Oct 2024 15:26:36 +0000 (18:26 +0300)
committerTom Rini <trini@konsulko.com>
Tue, 29 Oct 2024 22:17:47 +0000 (16:17 -0600)
lmb_alloc_flags() & lmb_alloc_base_flags() are just a wrappers for
_lmb_alloc_base(). Since the only difference is the max address of the
allowed allocation which _lmb_alloc_base() already supports with the
LMB_ALLOC_ANYWHERE flag, remove one of them.

Keep the lmb_alloc_base_flags() which also prints an error on failures
and adjust efi_allocate_pages() to only use one of them.

While at it clean up the duplicate function description from the header
file.

Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
include/lmb.h
lib/efi_loader/efi_memory.c
lib/lmb.c

index e46abf400c682237923806b7615e63531a76f47b..2201d6f2b67bb605dbff015fa2a6a008b780c57a 100644 (file)
@@ -14,6 +14,9 @@
  * Copyright (C) 2001 Peter Bergner, IBM Corp.
  */
 
+#define LMB_ALLOC_ANYWHERE      0
+#define LMB_ALIST_INITIAL_SIZE  4
+
 /**
  * enum lmb_flags - definition of memory region attributes
  * @LMB_NONE: no special request
@@ -95,32 +98,6 @@ phys_addr_t lmb_alloc_base(phys_size_t size, ulong align, phys_addr_t max_addr);
 phys_addr_t lmb_alloc_addr(phys_addr_t base, phys_size_t size);
 phys_size_t lmb_get_free_size(phys_addr_t addr);
 
-/**
- * lmb_alloc_flags() - Allocate memory region with specified attributes
- * @size: Size of the region requested
- * @align: Alignment of the memory region requested
- * @flags: Memory region attributes to be set
- *
- * Allocate a region of memory with the attributes specified through the
- * parameter.
- *
- * Return: base address on success, 0 on error
- */
-phys_addr_t lmb_alloc_flags(phys_size_t size, ulong align, uint flags);
-
-/**
- * lmb_alloc_base_flags() - Allocate specified memory region with specified attributes
- * @size: Size of the region requested
- * @align: Alignment of the memory region requested
- * @max_addr: Maximum address of the requested region
- * @flags: Memory region attributes to be set
- *
- * Allocate a region of memory with the attributes specified through the
- * parameter. The max_addr parameter is used to specify the maximum address
- * below which the requested region should be allocated.
- *
- * Return: base address on success, 0 on error
- */
 phys_addr_t lmb_alloc_base_flags(phys_size_t size, ulong align,
                                 phys_addr_t max_addr, uint flags);
 
index 3d742fa1915025063cf256bf96fb35e2e73cc081..9f3f08769977f7e2a77428c74e080da9692e4e79 100644 (file)
@@ -472,7 +472,8 @@ efi_status_t efi_allocate_pages(enum efi_allocate_type type,
        switch (type) {
        case EFI_ALLOCATE_ANY_PAGES:
                /* Any page */
-               addr = (u64)lmb_alloc_flags(len, EFI_PAGE_SIZE, flags);
+               addr = (u64)lmb_alloc_base_flags(len, EFI_PAGE_SIZE,
+                                                LMB_ALLOC_ANYWHERE, flags);
                if (!addr)
                        return EFI_OUT_OF_RESOURCES;
                break;
index c6c0d0f9a7c7dc41fe347f8ad0c714105f72767f..9423301cdbc19ac942e7c8d7fc6da7e23a69c227 100644 (file)
--- a/lib/lmb.c
+++ b/lib/lmb.c
@@ -27,9 +27,6 @@ DECLARE_GLOBAL_DATA_PTR;
 #define MAP_OP_FREE            (u8)0x2
 #define MAP_OP_ADD             (u8)0x3
 
-#define LMB_ALLOC_ANYWHERE     0
-#define LMB_ALIST_INITIAL_SIZE 4
-
 static struct lmb lmb;
 
 static bool lmb_should_notify(enum lmb_flags flags)
@@ -671,23 +668,6 @@ phys_addr_t lmb_alloc(phys_size_t size, ulong align)
        return lmb_alloc_base(size, align, LMB_ALLOC_ANYWHERE);
 }
 
-/**
- * lmb_alloc_flags() - Allocate memory region with specified attributes
- * @size: Size of the region requested
- * @align: Alignment of the memory region requested
- * @flags: Memory region attributes to be set
- *
- * Allocate a region of memory with the attributes specified through the
- * parameter.
- *
- * Return: base address on success, 0 on error
- */
-phys_addr_t lmb_alloc_flags(phys_size_t size, ulong align, uint flags)
-{
-       return _lmb_alloc_base(size, align, LMB_ALLOC_ANYWHERE,
-                              flags);
-}
-
 phys_addr_t lmb_alloc_base(phys_size_t size, ulong align, phys_addr_t max_addr)
 {
        phys_addr_t alloc;