mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 16:41:58 +00:00
2e1c958de4
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: Jonas Bonn <jonas@southpole.se> |
||
---|---|---|
.. | ||
fault.c | ||
init.c | ||
ioremap.c | ||
Makefile | ||
tlb.c |