Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
c9927c3e
Commit
c9927c3e
authored
Mar 16, 2009
by
Artem Bityutskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UBIFS: use KERN_CONT
Signed-off-by:
Artem Bityutskiy
<
Artem.Bityutskiy@nokia.com
>
parent
0a6fb8d9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
fs/ubifs/debug.c
fs/ubifs/debug.c
+2
-2
fs/ubifs/lpt_commit.c
fs/ubifs/lpt_commit.c
+4
-4
No files found.
fs/ubifs/debug.c
View file @
c9927c3e
...
...
@@ -479,9 +479,9 @@ void dbg_dump_node(const struct ubifs_info *c, const void *node)
"bad or corrupted node)"
);
else
{
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
;
}
...
...
fs/ubifs/lpt_commit.c
View file @
c9927c3e
/*
/*
* This file is part of UBIFS.
*
* Copyright (C) 2006-2008 Nokia Corporation.
...
...
@@ -1921,12 +1921,12 @@ static void dump_lpt_leb(const struct ubifs_info *c, int lnum)
lnum
,
offs
);
err
=
ubifs_unpack_nnode
(
c
,
buf
,
&
nnode
);
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
);
if
(
i
!=
UBIFS_LPT_FANOUT
-
1
)
printk
(
", "
);
printk
(
KERN_CONT
", "
);
}
printk
(
"
\n
"
);
printk
(
KERN_CONT
"
\n
"
);
break
;
}
case
UBIFS_LPT_LTAB
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment