Commit e1851a6c authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] JBD pasting warning fix

From: "Hua Zhong" <hzhong@cisco.com>

Fix a token-pasting warning from recent gcc's
parent 6f924b79
...@@ -274,8 +274,9 @@ void buffer_assertion_failure(struct buffer_head *bh); ...@@ -274,8 +274,9 @@ void buffer_assertion_failure(struct buffer_head *bh);
#define __journal_expect(expr, why...) \ #define __journal_expect(expr, why...) \
do { \ do { \
if (!(expr)) { \ if (!(expr)) { \
printk(KERN_ERR "EXT3-fs unexpected failure: %s;\n", # expr); \ printk(KERN_ERR \
printk(KERN_ERR ## why); \ "EXT3-fs unexpected failure: %s;\n",# expr); \
printk(KERN_ERR why); \
} \ } \
} while (0) } while (0)
#define J_EXPECT(expr, why...) __journal_expect(expr, ## why) #define J_EXPECT(expr, why...) __journal_expect(expr, ## why)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment