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

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

Pull arm64 fixes from Catalin Marinas:

- Fix CMA gigantic page order for 16K/64K page sizes

- Fix section mismatch error in drivers/acpi/arm64/gtdt.c

* tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux:
acpi/arm64: fix next_platform_timer() section mismatch error
arm64/hugetlb: fix CMA gigantic page order for non-4K PAGE_SIZE

+2 -2
+1 -1
arch/arm64/mm/hugetlbpage.c
··· 43 43 #ifdef CONFIG_ARM64_4K_PAGES 44 44 order = PUD_SHIFT - PAGE_SHIFT; 45 45 #else 46 - order = CONT_PMD_SHIFT + PMD_SHIFT - PAGE_SHIFT; 46 + order = CONT_PMD_SHIFT - PAGE_SHIFT; 47 47 #endif 48 48 /* 49 49 * HugeTLB CMA reservation is required for gigantic
+1 -1
drivers/acpi/arm64/gtdt.c
··· 36 36 37 37 static struct acpi_gtdt_descriptor acpi_gtdt_desc __initdata; 38 38 39 - static inline void *next_platform_timer(void *platform_timer) 39 + static inline __init void *next_platform_timer(void *platform_timer) 40 40 { 41 41 struct acpi_gtdt_header *gh = platform_timer; 42 42