[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1448446565-15805-1-git-send-email-anuplimbu14@gmail.com>
Date: Wed, 25 Nov 2015 15:46:05 +0530
From: Anup Limbu <anuplimbu14@...il.com>
To: agk@...hat.com, snitzer@...hat.com, dm-devel@...hat.com,
neilb@...e.com, linux-raid@...r.kernel.org,
linux-kernel@...r.kernel.org
Cc: Anup Limbu <anuplimbu14@...il.com>
Subject: [PATCH] md: dm-bufio: Use BUG_ON instead of if BUG
Use BUG_ON instead of if BUG
Signed-off-by: Anup Limbu <anuplimbu14@...il.com>
---
drivers/md/dm-bufio.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/md/dm-bufio.c b/drivers/md/dm-bufio.c
index 2dd3308..788a905 100644
--- a/drivers/md/dm-bufio.c
+++ b/drivers/md/dm-bufio.c
@@ -1891,8 +1891,7 @@ static void __exit dm_bufio_exit(void)
bug = 1;
}
- if (bug)
- BUG();
+ BUG_ON(bug);
}
module_init(dm_bufio_init)
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists