diff options
-rw-r--r-- | fs/xfs/support/debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/support/debug.c b/fs/xfs/support/debug.c index e6cf955ec0f..0df88897ef8 100644 --- a/fs/xfs/support/debug.c +++ b/fs/xfs/support/debug.c | |||
@@ -75,11 +75,11 @@ xfs_cmn_err( | |||
75 | { | 75 | { |
76 | struct va_format vaf; | 76 | struct va_format vaf; |
77 | va_list args; | 77 | va_list args; |
78 | int panic = 0; | 78 | int do_panic = 0; |
79 | 79 | ||
80 | if (xfs_panic_mask && (xfs_panic_mask & panic_tag)) { | 80 | if (xfs_panic_mask && (xfs_panic_mask & panic_tag)) { |
81 | printk(KERN_ALERT "XFS: Transforming an alert into a BUG."); | 81 | printk(KERN_ALERT "XFS: Transforming an alert into a BUG."); |
82 | panic = 1; | 82 | do_panic = 1; |
83 | } | 83 | } |
84 | 84 | ||
85 | va_start(args, fmt); | 85 | va_start(args, fmt); |
@@ -89,7 +89,7 @@ xfs_cmn_err( | |||
89 | printk(KERN_ALERT "Filesystem %s: %pV", mp->m_fsname, &vaf); | 89 | printk(KERN_ALERT "Filesystem %s: %pV", mp->m_fsname, &vaf); |
90 | va_end(args); | 90 | va_end(args); |
91 | 91 | ||
92 | BUG_ON(panic); | 92 | BUG_ON(do_panic); |
93 | } | 93 | } |
94 | 94 | ||
95 | void | 95 | void |