]> Git Repo - linux.git/commit
mm/page_alloc: make should_fail_alloc_page() static
authorMel Gorman <[email protected]>
Thu, 1 Jul 2021 01:53:25 +0000 (18:53 -0700)
committerLinus Torvalds <[email protected]>
Thu, 1 Jul 2021 18:06:02 +0000 (11:06 -0700)
commitf7173090033c70886d925995e9dfdfb76dbb2441
tree43d5becd27f3e0751dca9a5b347d82ac241062ae
parent5da96bdd93ed732685fb511d9889d3f6c5717fad
mm/page_alloc: make should_fail_alloc_page() static

make W=1 generates the following warning for mm/page_alloc.c

  mm/page_alloc.c:3651:15: warning: no previous prototype for `should_fail_alloc_page' [-Wmissing-prototypes]
   noinline bool should_fail_alloc_page(gfp_t gfp_mask, unsigned int order)
                 ^~~~~~~~~~~~~~~~~~~~~~

This function is deliberately split out for BPF to allow errors to be
injected.  The function is not used anywhere else so it is local to the
file.  Make it static which should still allow error injection to be used
similar to how block/blk-core.c:should_fail_bio() works.

Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Mel Gorman <[email protected]>
Reviewed-by: Yang Shi <[email protected]>
Acked-by: Vlastimil Babka <[email protected]>
Cc: Dan Streetman <[email protected]>
Cc: David Hildenbrand <[email protected]>
Cc: Michal Hocko <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/page_alloc.c
This page took 0.054785 seconds and 4 git commands to generate.