The patch titled Subject: x86/numa: fix build when CONFIG_ACPI is not set has been added to the -mm tree. Its filename is x86-numa-fix-build-when-config_acpi-is-not-set.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/x86-numa-fix-build-when-config_acpi-is-not-set.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/x86-numa-fix-build-when-config_acpi-is-not-set.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Subject: x86/numa: fix build when CONFIG_ACPI is not set Fix build errors when CONFIG_ACPI is not set/enabled by adding <acpi/acpi_numa.h> in the #else (!CONFIG_ACPI) block. ../arch/x86/mm/numa.c: In function `numa_setup': ../arch/x86/mm/numa.c:43:3: error: implicit declaration of function `disable_srat'; did you mean `disable_irq'? [-Werror=implicit-function-declaration] disable_srat(); ^~~~~~~~~~~~ ../arch/x86/mm/numa.c:45:3: error: implicit declaration of function `disable_hmat'; did you mean `disable_dma'? [-Werror=implicit-function-declaration] disable_hmat(); ^~~~~~~~~~~~ Link: https://lkml.kernel.org/r/70e5ee34-9809-a997-7b49-499e4be61307@xxxxxxxxxxxxx Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Cc: Dan Williams <dan.j.williams@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/acpi.h | 2 ++ 1 file changed, 2 insertions(+) --- a/include/linux/acpi.h~x86-numa-fix-build-when-config_acpi-is-not-set +++ a/include/linux/acpi.h @@ -709,6 +709,8 @@ static inline u64 acpi_arch_get_root_poi #define ACPI_HANDLE_FWNODE(fwnode) (NULL) #define ACPI_DEVICE_CLASS(_cls, _msk) .cls = (0), .cls_msk = (0), +#include <acpi/acpi_numa.h> + struct fwnode_handle; static inline bool acpi_dev_found(const char *hid) _ Patches currently in -mm which might be from rdunlap@xxxxxxxxxxxxx are x86-numa-fix-build-when-config_acpi-is-not-set.patch fs-ocfs2-delete-repeated-words-in-comments.patch fs-configfs-delete-repeated-words-in-comments.patch lib-bitmap-delete-duplicated-words.patch lib-libcrc32c-delete-duplicated-words.patch lib-decompress_bunzip2-delete-duplicated-words.patch lib-devres-delete-duplicated-words.patch lib-dynamic_queue_limits-delete-duplicated-words-fix-typo.patch lib-earlycpio-delete-duplicated-words.patch lib-radix-tree-delete-duplicated-words.patch lib-syscall-delete-duplicated-words.patch lib-test_sysctl-delete-duplicated-words.patch