From: Wei Wang Date: Mon, 27 Aug 2018 01:32:18 +0000 (+0800) Subject: mm/page_poison: expose page_poisoning_enabled to kernel modules X-Git-Tag: rel_imx_5.10.35_2.0.0-somdevices.0~5990^2~6 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=d95f58f4a6ca002126c36c530fb096519c94baef;p=linux.git mm/page_poison: expose page_poisoning_enabled to kernel modules In some usages, e.g. virtio-balloon, a kernel module needs to know if page poisoning is in use. This patch exposes the page_poisoning_enabled function to kernel modules. Signed-off-by: Wei Wang Cc: Andrew Morton Cc: Michal Hocko Cc: Michael S. Tsirkin Acked-by: Andrew Morton Signed-off-by: Michael S. Tsirkin --- diff --git a/mm/page_poison.c b/mm/page_poison.c index aa2b3d34e8ea..830f60489b14 100644 --- a/mm/page_poison.c +++ b/mm/page_poison.c @@ -17,6 +17,11 @@ static int __init early_page_poison_param(char *buf) } early_param("page_poison", early_page_poison_param); +/** + * page_poisoning_enabled - check if page poisoning is enabled + * + * Return true if page poisoning is enabled, or false if not. + */ bool page_poisoning_enabled(void) { /* @@ -29,6 +34,7 @@ bool page_poisoning_enabled(void) (!IS_ENABLED(CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC) && debug_pagealloc_enabled())); } +EXPORT_SYMBOL_GPL(page_poisoning_enabled); static void poison_page(struct page *page) {