mirror of
https://github.com/torvalds/linux.git
synced 2025-04-12 06:49:52 +00:00

Before SLUB initialization, various subsystems used memblock_alloc to allocate memory. In most cases, when memory allocation fails, an immediate panic is required. To simplify this behavior and reduce repetitive checks, introduce `memblock_alloc_or_panic`. This function ensures that memory allocation failures result in a panic automatically, improving code readability and consistency across subsystems that require this behavior. [guoweikang.kernel@gmail.com: arch/s390: save_area_alloc default failure behavior changed to panic] Link: https://lkml.kernel.org/r/20250109033136.2845676-1-guoweikang.kernel@gmail.com Link: https://lore.kernel.org/lkml/Z2fknmnNtiZbCc7x@kernel.org/ Link: https://lkml.kernel.org/r/20250102072528.650926-1-guoweikang.kernel@gmail.com Signed-off-by: Guo Weikang <guoweikang.kernel@gmail.com> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> [m68k] Reviewed-by: Alexander Gordeev <agordeev@linux.ibm.com> [s390] Acked-by: Mike Rapoport (Microsoft) <rppt@kernel.org> Cc: Alexander Gordeev <agordeev@linux.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
60 lines
1.1 KiB
C
60 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
|
*/
|
|
#include <linux/memblock.h>
|
|
#include <os.h>
|
|
|
|
#include "um_arch.h"
|
|
|
|
static int __init __uml_load_file(const char *filename, void *buf, int size)
|
|
{
|
|
int fd, n;
|
|
|
|
fd = os_open_file(filename, of_read(OPENFLAGS()), 0);
|
|
if (fd < 0) {
|
|
printk(KERN_ERR "Opening '%s' failed - err = %d\n", filename,
|
|
-fd);
|
|
return -1;
|
|
}
|
|
n = os_read_file(fd, buf, size);
|
|
if (n != size) {
|
|
printk(KERN_ERR "Read of %d bytes from '%s' failed, "
|
|
"err = %d\n", size,
|
|
filename, -n);
|
|
return -1;
|
|
}
|
|
|
|
os_close_file(fd);
|
|
return 0;
|
|
}
|
|
|
|
void *uml_load_file(const char *filename, unsigned long long *size)
|
|
{
|
|
void *area;
|
|
int err;
|
|
|
|
*size = 0;
|
|
|
|
if (!filename)
|
|
return NULL;
|
|
|
|
err = os_file_size(filename, size);
|
|
if (err)
|
|
return NULL;
|
|
|
|
if (*size == 0) {
|
|
printk(KERN_ERR "\"%s\" is empty\n", filename);
|
|
return NULL;
|
|
}
|
|
|
|
area = memblock_alloc_or_panic(*size, SMP_CACHE_BYTES);
|
|
|
|
if (__uml_load_file(filename, area, *size)) {
|
|
memblock_free(area, *size);
|
|
return NULL;
|
|
}
|
|
|
|
return area;
|
|
}
|