]> www.infradead.org Git - users/jedix/linux-maple.git/commit
mm/page_alloc: fix build with CONFIG_UNACCEPTED_MEMORY=n
authorAndrew Morton <akpm@linux-foundation.org>
Thu, 5 Sep 2024 21:22:20 +0000 (14:22 -0700)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 9 Sep 2024 23:39:15 +0000 (16:39 -0700)
commit6e94da943ba3ebd8c603872010ff6efcb682fe9c
tree05ecdba5eeffe278fa52543c3040e49b0408331e
parentcfc8193898ca4511e6c3cc20101ef3554eda8efb
mm/page_alloc: fix build with CONFIG_UNACCEPTED_MEMORY=n

When has_unaccepted_memory() is unused, it prevents kernel builds
with clang, `make W=1` and CONFIG_WERROR=y:

mm/page_alloc.c:7036:20: error: unused function 'has_unaccepted_memory' [-Werror,-Wunused-function]
7036 | static inline bool has_unaccepted_memory(void)
|                    ^~~~~~~~~~~~~~~~~~~~~

Fix it by removeing the CONFIG_UNACCEPTED_MEMORY=n stub.

Link: https://lkml.kernel.org/r/20240905142220.49d93337a0abce5690e515d9@linux-foundation.org
Reported-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Closes: https://lkml.kernel.org/r/20240905171553.275054-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/page_alloc.c