diff options
author | Eric Sesterhenn <snakebyte@gmx.de> | 2006-03-26 18:22:50 +0200 |
---|---|---|
committer | Adrian Bunk <bunk@stusta.de> | 2006-03-26 18:22:50 +0200 |
commit | 547bc92649345af6014578a64b27cc5787617935 (patch) | |
tree | 4b2a097badd0bef9003846813dec53d5daa5030e /drivers/md | |
parent | c163c7293eb68bf6c0c824d122a2192b9f129193 (diff) | |
download | linux-3.10-547bc92649345af6014578a64b27cc5787617935.tar.gz linux-3.10-547bc92649345af6014578a64b27cc5787617935.tar.bz2 linux-3.10-547bc92649345af6014578a64b27cc5787617935.zip |
BUG_ON() Conversion in md/dm-table.c
this changes if() BUG(); constructs to BUG_ON() which is
cleaner and can better optimized away
Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/dm-table.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/md/dm-table.c b/drivers/md/dm-table.c index 9b1e2f5ca63..907b08ddb78 100644 --- a/drivers/md/dm-table.c +++ b/drivers/md/dm-table.c @@ -352,8 +352,7 @@ static int open_dev(struct dm_dev *d, dev_t dev) int r; - if (d->bdev) - BUG(); + BUG_ON(d->bdev); bdev = open_by_devnum(dev, d->mode); if (IS_ERR(bdev)) @@ -427,8 +426,7 @@ static int __table_get_device(struct dm_table *t, struct dm_target *ti, struct dm_dev *dd; unsigned int major, minor; - if (!t) - BUG(); + BUG_ON(!t); if (sscanf(path, "%u:%u", &major, &minor) == 2) { /* Extract the major/minor numbers */ |