mm/page_alloc.c: mark bad_range() and meminit_pfn_in_nid() as __maybe_unused
authorMatthias Kaehlcke <[email protected]>
Thu, 6 Jul 2017 22:39:23 +0000 (15:39 -0700)
committerLinus Torvalds <[email protected]>
Thu, 6 Jul 2017 23:24:33 +0000 (16:24 -0700)
commitd73d3c9f698c5e474e58acbaba87a1f134772747
tree71b68397612562ec45a1a76b454fc417a021dc3b
parent40692eb5eea209c2dd55857f44b4e1d7206e91d6
mm/page_alloc.c: mark bad_range() and meminit_pfn_in_nid() as __maybe_unused

The functions are not used in some configurations.  Adding the attribute
fixes the following warnings when building with clang:

  mm/page_alloc.c:409:19: error: function 'bad_range' is not needed and
      will not be emitted [-Werror,-Wunneeded-internal-declaration]

  mm/page_alloc.c:1106:30: error: unused function 'meminit_pfn_in_nid'
      [-Werror,-Wunused-function]

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Matthias Kaehlcke <[email protected]>
Cc: Vlastimil Babka <[email protected]>
Cc: Mel Gorman <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/page_alloc.c