Commit c9927c3e authored by Artem Bityutskiy's avatar Artem Bityutskiy

UBIFS: use KERN_CONT

Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
parent 0a6fb8d9
...@@ -479,9 +479,9 @@ void dbg_dump_node(const struct ubifs_info *c, const void *node) ...@@ -479,9 +479,9 @@ void dbg_dump_node(const struct ubifs_info *c, const void *node)
"bad or corrupted node)"); "bad or corrupted node)");
else { else {
for (i = 0; i < nlen && dent->name[i]; i++) for (i = 0; i < nlen && dent->name[i]; i++)
printk("%c", dent->name[i]); printk(KERN_CONT "%c", dent->name[i]);
} }
printk("\n"); printk(KERN_CONT "\n");
break; break;
} }
......
/* /*
* This file is part of UBIFS. * This file is part of UBIFS.
* *
* Copyright (C) 2006-2008 Nokia Corporation. * Copyright (C) 2006-2008 Nokia Corporation.
...@@ -1921,12 +1921,12 @@ static void dump_lpt_leb(const struct ubifs_info *c, int lnum) ...@@ -1921,12 +1921,12 @@ static void dump_lpt_leb(const struct ubifs_info *c, int lnum)
lnum, offs); lnum, offs);
err = ubifs_unpack_nnode(c, buf, &nnode); err = ubifs_unpack_nnode(c, buf, &nnode);
for (i = 0; i < UBIFS_LPT_FANOUT; i++) { for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
printk("%d:%d", nnode.nbranch[i].lnum, printk(KERN_CONT "%d:%d", nnode.nbranch[i].lnum,
nnode.nbranch[i].offs); nnode.nbranch[i].offs);
if (i != UBIFS_LPT_FANOUT - 1) if (i != UBIFS_LPT_FANOUT - 1)
printk(", "); printk(KERN_CONT ", ");
} }
printk("\n"); printk(KERN_CONT "\n");
break; break;
} }
case UBIFS_LPT_LTAB: case UBIFS_LPT_LTAB:
......
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