Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux

Pull arm64 fix from Catalin Marinas:
"Use memblock_alloc() instead of memblock_alloc_low() in
request_standard_resources(), the latter being limited to the low 4G
memory range on arm64"

* tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux:
arm64: replace memblock_alloc_low with memblock_alloc

+1 -1
+1 -1
arch/arm64/kernel/setup.c
··· 217 217 218 218 num_standard_resources = memblock.memory.cnt; 219 219 res_size = num_standard_resources * sizeof(*standard_resources); 220 - standard_resources = memblock_alloc_low(res_size, SMP_CACHE_BYTES); 220 + standard_resources = memblock_alloc(res_size, SMP_CACHE_BYTES); 221 221 if (!standard_resources) 222 222 panic("%s: Failed to allocate %zu bytes\n", __func__, res_size); 223 223