提交 d74f3d25 编写于 作者: J Joe Perches 提交者: Theodore Ts'o

ext4: add missing KERN_CONT to a few more debugging uses

Recent commits require line continuing printks to always use
pr_cont or KERN_CONT.  Add these markings to a few more printks.

Miscellaneaous:

o Integrate the ea_idebug and ea_bdebug macros to use a single
  call to printk(KERN_DEBUG instead of 3 separate printks
o Use the more common varargs macro style
Signed-off-by: NJoe Perches <joe@perches.com>
Signed-off-by: NTheodore Ts'o <tytso@mit.edu>
Reviewed-by: NAndreas Dilger <adilger@dilger.ca>
上级 8906a822
...@@ -128,12 +128,12 @@ static void debug_print_tree(struct ext4_sb_info *sbi) ...@@ -128,12 +128,12 @@ static void debug_print_tree(struct ext4_sb_info *sbi)
node = rb_first(&sbi->system_blks); node = rb_first(&sbi->system_blks);
while (node) { while (node) {
entry = rb_entry(node, struct ext4_system_zone, node); entry = rb_entry(node, struct ext4_system_zone, node);
printk("%s%llu-%llu", first ? "" : ", ", printk(KERN_CONT "%s%llu-%llu", first ? "" : ", ",
entry->start_blk, entry->start_blk + entry->count - 1); entry->start_blk, entry->start_blk + entry->count - 1);
first = 0; first = 0;
node = rb_next(node); node = rb_next(node);
} }
printk("\n"); printk(KERN_CONT "\n");
} }
int ext4_setup_system_zone(struct super_block *sb) int ext4_setup_system_zone(struct super_block *sb)
......
...@@ -27,16 +27,15 @@ ...@@ -27,16 +27,15 @@
#ifdef CONFIG_EXT4_DEBUG #ifdef CONFIG_EXT4_DEBUG
extern ushort ext4_mballoc_debug; extern ushort ext4_mballoc_debug;
#define mb_debug(n, fmt, a...) \ #define mb_debug(n, fmt, ...) \
do { \ do { \
if ((n) <= ext4_mballoc_debug) { \ if ((n) <= ext4_mballoc_debug) { \
printk(KERN_DEBUG "(%s, %d): %s: ", \ printk(KERN_DEBUG "(%s, %d): %s: " fmt, \
__FILE__, __LINE__, __func__); \ __FILE__, __LINE__, __func__, ##__VA_ARGS__); \
printk(fmt, ## a); \ } \
} \ } while (0)
} while (0)
#else #else
#define mb_debug(n, fmt, a...) no_printk(fmt, ## a) #define mb_debug(n, fmt, ...) no_printk(fmt, ##__VA_ARGS__)
#endif #endif
#define EXT4_MB_HISTORY_ALLOC 1 /* allocation */ #define EXT4_MB_HISTORY_ALLOC 1 /* allocation */
......
...@@ -577,12 +577,13 @@ static inline unsigned dx_node_limit(struct inode *dir) ...@@ -577,12 +577,13 @@ static inline unsigned dx_node_limit(struct inode *dir)
static void dx_show_index(char * label, struct dx_entry *entries) static void dx_show_index(char * label, struct dx_entry *entries)
{ {
int i, n = dx_get_count (entries); int i, n = dx_get_count (entries);
printk(KERN_DEBUG "%s index ", label); printk(KERN_DEBUG "%s index", label);
for (i = 0; i < n; i++) { for (i = 0; i < n; i++) {
printk("%x->%lu ", i ? dx_get_hash(entries + i) : printk(KERN_CONT " %x->%lu",
0, (unsigned long)dx_get_block(entries + i)); i ? dx_get_hash(entries + i) : 0,
(unsigned long)dx_get_block(entries + i));
} }
printk("\n"); printk(KERN_CONT "\n");
} }
struct stats struct stats
...@@ -679,7 +680,7 @@ static struct stats dx_show_leaf(struct inode *dir, ...@@ -679,7 +680,7 @@ static struct stats dx_show_leaf(struct inode *dir,
} }
de = ext4_next_entry(de, size); de = ext4_next_entry(de, size);
} }
printk("(%i)\n", names); printk(KERN_CONT "(%i)\n", names);
return (struct stats) { names, space, 1 }; return (struct stats) { names, space, 1 };
} }
...@@ -798,7 +799,7 @@ dx_probe(struct ext4_filename *fname, struct inode *dir, ...@@ -798,7 +799,7 @@ dx_probe(struct ext4_filename *fname, struct inode *dir,
q = entries + count - 1; q = entries + count - 1;
while (p <= q) { while (p <= q) {
m = p + (q - p) / 2; m = p + (q - p) / 2;
dxtrace(printk(".")); dxtrace(printk(KERN_CONT "."));
if (dx_get_hash(m) > hash) if (dx_get_hash(m) > hash)
q = m - 1; q = m - 1;
else else
...@@ -810,7 +811,7 @@ dx_probe(struct ext4_filename *fname, struct inode *dir, ...@@ -810,7 +811,7 @@ dx_probe(struct ext4_filename *fname, struct inode *dir,
at = entries; at = entries;
while (n--) while (n--)
{ {
dxtrace(printk(",")); dxtrace(printk(KERN_CONT ","));
if (dx_get_hash(++at) > hash) if (dx_get_hash(++at) > hash)
{ {
at--; at--;
...@@ -821,7 +822,8 @@ dx_probe(struct ext4_filename *fname, struct inode *dir, ...@@ -821,7 +822,8 @@ dx_probe(struct ext4_filename *fname, struct inode *dir,
} }
at = p - 1; at = p - 1;
dxtrace(printk(" %x->%u\n", at == entries ? 0 : dx_get_hash(at), dxtrace(printk(KERN_CONT " %x->%u\n",
at == entries ? 0 : dx_get_hash(at),
dx_get_block(at))); dx_get_block(at)));
frame->entries = entries; frame->entries = entries;
frame->at = at; frame->at = at;
......
...@@ -61,18 +61,12 @@ ...@@ -61,18 +61,12 @@
#include "acl.h" #include "acl.h"
#ifdef EXT4_XATTR_DEBUG #ifdef EXT4_XATTR_DEBUG
# define ea_idebug(inode, f...) do { \ # define ea_idebug(inode, fmt, ...) \
printk(KERN_DEBUG "inode %s:%lu: ", \ printk(KERN_DEBUG "inode %s:%lu: " fmt "\n", \
inode->i_sb->s_id, inode->i_ino); \ inode->i_sb->s_id, inode->i_ino, ##__VA_ARGS__)
printk(f); \ # define ea_bdebug(bh, fmt, ...) \
printk("\n"); \ printk(KERN_DEBUG "block %pg:%lu: " fmt "\n", \
} while (0) bh->b_bdev, (unsigned long)bh->b_blocknr, ##__VA_ARGS__)
# define ea_bdebug(bh, f...) do { \
printk(KERN_DEBUG "block %pg:%lu: ", \
bh->b_bdev, (unsigned long) bh->b_blocknr); \
printk(f); \
printk("\n"); \
} while (0)
#else #else
# define ea_idebug(inode, fmt, ...) no_printk(fmt, ##__VA_ARGS__) # define ea_idebug(inode, fmt, ...) no_printk(fmt, ##__VA_ARGS__)
# define ea_bdebug(bh, fmt, ...) no_printk(fmt, ##__VA_ARGS__) # define ea_bdebug(bh, fmt, ...) no_printk(fmt, ##__VA_ARGS__)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册