aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/gfs2/util.c1
-rw-r--r--fs/gfs2/util.h1
2 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/util.c b/fs/gfs2/util.c
index 2fc110208d00..7cd9e25639c4 100644
--- a/fs/gfs2/util.c
+++ b/fs/gfs2/util.c
@@ -32,7 +32,6 @@ void gfs2_assert_i(struct gfs2_sbd *sdp)
32{ 32{
33 printk(KERN_EMERG "GFS2: fsid=%s: fatal assertion failed\n", 33 printk(KERN_EMERG "GFS2: fsid=%s: fatal assertion failed\n",
34 sdp->sd_fsname); 34 sdp->sd_fsname);
35 BUG();
36} 35}
37 36
38/** 37/**
diff --git a/fs/gfs2/util.h b/fs/gfs2/util.h
index c9624c30cad6..4532dbab0a2c 100644
--- a/fs/gfs2/util.h
+++ b/fs/gfs2/util.h
@@ -30,6 +30,7 @@ void gfs2_assert_i(struct gfs2_sbd *sdp);
30do { \ 30do { \
31 if (unlikely(!(assertion))) { \ 31 if (unlikely(!(assertion))) { \
32 gfs2_assert_i(sdp); \ 32 gfs2_assert_i(sdp); \
33 BUG(); \
33 } \ 34 } \
34} while (0) 35} while (0)
35 36