]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
x86/boot/e820: Rename gap_start/gap_size to max_gap_start/max_gap_start in e820_searc...
authorIngo Molnar <mingo@kernel.org>
Thu, 15 May 2025 12:05:38 +0000 (14:05 +0200)
committerIngo Molnar <mingo@kernel.org>
Sun, 14 Dec 2025 08:19:41 +0000 (09:19 +0100)
The PCI gap searching functions pass around pointers to the
gap_start/gap_size variables, which refer to the maximum
size gap found so far.

Rename the variables to say so, and disambiguate their namespace
from 'current gap' variables.

Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: H . Peter Anvin <hpa@zytor.com>
Cc: Andy Shevchenko <andy@kernel.org>
Cc: Arnd Bergmann <arnd@kernel.org>
Cc: David Woodhouse <dwmw@amazon.co.uk>
Cc: Juergen Gross <jgross@suse.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mike Rapoport <rppt@kernel.org>
Cc: Paul Menzel <pmenzel@molgen.mpg.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: https://patch.msgid.link/20250515120549.2820541-23-mingo@kernel.org
arch/x86/kernel/e820.c

index 3fba5406502a1b7f61d71a2007d803bb39e4b10c..f5828029829f9bab07ff89db69da87b953c9a3ba 100644 (file)
@@ -638,7 +638,7 @@ static void __init e820__update_table_kexec(void)
 /*
  * Search for a gap in the E820 memory space from 0 to MAX_GAP_END (4GB).
  */
-static int __init e820_search_gap(unsigned long *gap_start, unsigned long *gap_size)
+static int __init e820_search_gap(unsigned long *max_gap_start, unsigned long *max_gap_size)
 {
        u64 last = MAX_GAP_END;
        int idx = e820_table->nr_entries;
@@ -655,9 +655,9 @@ static int __init e820_search_gap(unsigned long *gap_start, unsigned long *gap_s
                if (last > end) {
                        unsigned long gap = last - end;
 
-                       if (gap > *gap_size) {
-                               *gap_size = gap;
-                               *gap_start = end;
+                       if (gap > *max_gap_size) {
+                               *max_gap_size = gap;
+                               *max_gap_start = end;
                                found = 1;
                        }
                }
@@ -677,29 +677,29 @@ static int __init e820_search_gap(unsigned long *gap_start, unsigned long *gap_s
  */
 __init void e820__setup_pci_gap(void)
 {
-       unsigned long gap_start, gap_size;
+       unsigned long max_gap_start, max_gap_size;
        int found;
 
-       gap_size = SZ_4M;
-       found  = e820_search_gap(&gap_start, &gap_size);
+       max_gap_size = SZ_4M;
+       found  = e820_search_gap(&max_gap_start, &max_gap_size);
 
        if (!found) {
 #ifdef CONFIG_X86_64
-               gap_start = (max_pfn << PAGE_SHIFT) + SZ_1M;
+               max_gap_start = (max_pfn << PAGE_SHIFT) + SZ_1M;
                pr_err("Cannot find an available gap in the 32-bit address range\n");
                pr_err("PCI devices with unassigned 32-bit BARs may not work!\n");
 #else
-               gap_start = 0x10000000;
+               max_gap_start = 0x10000000;
 #endif
        }
 
        /*
         * e820__reserve_resources_late() protects stolen RAM already:
         */
-       pci_mem_start = gap_start;
+       pci_mem_start = max_gap_start;
 
        pr_info("[gap %#010lx-%#010lx] available for PCI devices\n",
-               gap_start, gap_start + gap_size - 1);
+               max_gap_start, max_gap_start + max_gap_size - 1);
 }
 
 /*