]> git.karo-electronics.de Git - karo-tx-linux.git/commit
hugetlb: replace BUG() with BUILD_BUG() for dummy definitions
authorDavid Daney <david.daney@cavium.com>
Fri, 2 Dec 2011 03:12:01 +0000 (14:12 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 6 Dec 2011 03:59:24 +0000 (14:59 +1100)
commit591dbcf87397852d37b2ed3c246c459eae742029
treee033017811b172cb349c5bf51841eabc4feaef59
parent89100252c4044071cec9a94a1b41e51c117bfb1b
hugetlb: replace BUG() with BUILD_BUG() for dummy definitions

The file linux/hugetlb.h has many places where dummy symbols were defined
so that the main source code would contain fewer:

    #ifdef CONFIG_HUGETLBFS

or

    #ifdef CONFIG_TRANSPARENT_HUGEPAGE

If there were any misuse of these symbols, the only symptom would be an
OOPS at runtime.  Change the BUG() to BUILD_BUG() to catch any such abuse
at compile time instead.

Signed-off-by: David Daney <david.daney@cavium.com>
Cc: David Rientjes <rientjes@google.com>
Cc: DM <dm.n9107@gmail.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
include/linux/huge_mm.h
include/linux/hugetlb.h