]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
mm/page_alloc.c: mark bad_range() and meminit_pfn_in_nid() as __maybe_unused
authorMatthias Kaehlcke <mka@chromium.org>
Thu, 6 Jul 2017 22:39:23 +0000 (15:39 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
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/20170518182030.165633-1-mka@chromium.org
Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Mel Gorman <mgorman@techsingularity.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/page_alloc.c