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
27e6b8e3
Commit
27e6b8e3
authored
Apr 23, 2008
by
David Woodhouse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[JFFS2] Honour TEST_TOTLEN macro in debugging code. ref->__totlen is going!
Signed-off-by:
David Woodhouse
<
dwmw2@infradead.org
>
parent
85a62db6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
fs/jffs2/debug.c
fs/jffs2/debug.c
+4
-1
No files found.
fs/jffs2/debug.c
View file @
27e6b8e3
...
...
@@ -400,7 +400,10 @@ __jffs2_dbg_dump_node_refs_nolock(struct jffs2_sb_info *c,
printk
(
JFFS2_DBG
);
for
(
ref
=
jeb
->
first_node
;
;
ref
=
ref_next
(
ref
))
{
printk
(
"%#08x(%#x)"
,
ref_offset
(
ref
),
ref
->
__totlen
);
printk
(
"%#08x"
,
ref_offset
(
ref
));
#ifdef TEST_TOTLEN
printk
(
"(%x)"
,
ref
->
__totlen
);
#endif
if
(
ref_next
(
ref
))
printk
(
"->"
);
else
...
...
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