]> 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>
Thu, 8 Dec 2011 04:41:45 +0000 (15:41 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 14 Dec 2011 05:48:05 +0000 (16:48 +1100)
commite99e147641ea2be0f9ee406fccbeb7d2a9bc5c1f
tree7d912f4fc94456c4e7ec598b4a9083a4c89ec8d0
parent1c4c584e4047af2f7ebc61d1b8ab16271750960d
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