diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2009-03-16 03:42:03 -0400 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2009-03-16 04:52:02 -0400 |
commit | c9927c3ee2d3d14893efd793a2a9ea772ddb4289 (patch) | |
tree | f1ed930413d6dd2f81c46c226d288310622c02c6 /fs | |
parent | 0a6fb8d9c435c612171b453449f98da28e9969a5 (diff) |
UBIFS: use KERN_CONT
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ubifs/debug.c | 4 | ||||
-rw-r--r-- | fs/ubifs/lpt_commit.c | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/fs/ubifs/debug.c b/fs/ubifs/debug.c index e975bd82f38b..93f6532eff00 100644 --- a/fs/ubifs/debug.c +++ b/fs/ubifs/debug.c | |||
@@ -479,9 +479,9 @@ void dbg_dump_node(const struct ubifs_info *c, const void *node) | |||
479 | "bad or corrupted node)"); | 479 | "bad or corrupted node)"); |
480 | else { | 480 | else { |
481 | for (i = 0; i < nlen && dent->name[i]; i++) | 481 | for (i = 0; i < nlen && dent->name[i]; i++) |
482 | printk("%c", dent->name[i]); | 482 | printk(KERN_CONT "%c", dent->name[i]); |
483 | } | 483 | } |
484 | printk("\n"); | 484 | printk(KERN_CONT "\n"); |
485 | 485 | ||
486 | break; | 486 | break; |
487 | } | 487 | } |
diff --git a/fs/ubifs/lpt_commit.c b/fs/ubifs/lpt_commit.c index 1bead5a6d80a..9d77f68b2f8e 100644 --- a/fs/ubifs/lpt_commit.c +++ b/fs/ubifs/lpt_commit.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | * This file is part of UBIFS. | 2 | * This file is part of UBIFS. |
3 | * | 3 | * |
4 | * Copyright (C) 2006-2008 Nokia Corporation. | 4 | * Copyright (C) 2006-2008 Nokia Corporation. |
@@ -1921,12 +1921,12 @@ static void dump_lpt_leb(const struct ubifs_info *c, int lnum) | |||
1921 | lnum, offs); | 1921 | lnum, offs); |
1922 | err = ubifs_unpack_nnode(c, buf, &nnode); | 1922 | err = ubifs_unpack_nnode(c, buf, &nnode); |
1923 | for (i = 0; i < UBIFS_LPT_FANOUT; i++) { | 1923 | for (i = 0; i < UBIFS_LPT_FANOUT; i++) { |
1924 | printk("%d:%d", nnode.nbranch[i].lnum, | 1924 | printk(KERN_CONT "%d:%d", nnode.nbranch[i].lnum, |
1925 | nnode.nbranch[i].offs); | 1925 | nnode.nbranch[i].offs); |
1926 | if (i != UBIFS_LPT_FANOUT - 1) | 1926 | if (i != UBIFS_LPT_FANOUT - 1) |
1927 | printk(", "); | 1927 | printk(KERN_CONT ", "); |
1928 | } | 1928 | } |
1929 | printk("\n"); | 1929 | printk(KERN_CONT "\n"); |
1930 | break; | 1930 | break; |
1931 | } | 1931 | } |
1932 | case UBIFS_LPT_LTAB: | 1932 | case UBIFS_LPT_LTAB: |