mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 20:21:57 +00:00
d1afa65ca5
Use BUG_ON(x) rather than if(x) BUG(); The semantic patch that fixes this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ identifier x; @@ -if (x) BUG(); +BUG_ON(x); @@ identifier x; @@ -if (!x) BUG(); +BUG_ON(!x); // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: Chris Metcalf <cmetcalf@tilera.com> |
||
---|---|---|
.. | ||
elf.c | ||
extable.c | ||
fault.c | ||
highmem.c | ||
homecache.c | ||
hugetlbpage.c | ||
init.c | ||
Makefile | ||
migrate_32.S | ||
migrate_64.S | ||
migrate.h | ||
mmap.c | ||
pgtable.c |