Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
7d27c814
Commit
7d27c814
authored
May 22, 2005
by
Thomas Gleixner
Committed by
Thomas Gleixner
May 23, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[JFFS2] Whitespace cleanup. Fix missing debug message
Signed-off-by:
Thomas Gleixner
<
tglx@linutronix.de
>
parent
c84441c4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
fs/jffs2/erase.c
fs/jffs2/erase.c
+1
-0
fs/jffs2/nodelist.c
fs/jffs2/nodelist.c
+6
-6
No files found.
fs/jffs2/erase.c
View file @
7d27c814
...
...
@@ -48,6 +48,7 @@ static void jffs2_erase_block(struct jffs2_sb_info *c,
#else
/* Linux */
struct
erase_info
*
instr
;
D1
(
printk
(
KERN_DEBUG
"jffs2_erase_block(): erase block %#x (range %#x-%#x)
\n
"
,
jeb
->
offset
,
jeb
->
offset
,
jeb
->
offset
+
c
->
sector_size
));
instr
=
kmalloc
(
sizeof
(
struct
erase_info
)
+
sizeof
(
struct
erase_priv_struct
),
GFP_KERNEL
);
if
(
!
instr
)
{
printk
(
KERN_WARNING
"kmalloc for struct erase_info in jffs2_erase_block failed. Refiling block for later
\n
"
);
...
...
fs/jffs2/nodelist.c
View file @
7d27c814
...
...
@@ -489,13 +489,13 @@ struct jffs2_inode_cache *jffs2_get_ino_cache(struct jffs2_sb_info *c, uint32_t
void
jffs2_add_ino_cache
(
struct
jffs2_sb_info
*
c
,
struct
jffs2_inode_cache
*
new
)
{
struct
jffs2_inode_cache
**
prev
;
D2
(
printk
(
KERN_DEBUG
"jffs2_add_ino_cache: Add %p (ino #%u)
\n
"
,
new
,
new
->
ino
));
spin_lock
(
&
c
->
inocache_lock
);
if
(
!
new
->
ino
)
new
->
ino
=
++
c
->
highest_ino
;
D2
(
printk
(
KERN_DEBUG
"jffs2_add_ino_cache: Add %p (ino #%u)
\n
"
,
new
,
new
->
ino
));
if
(
!
new
->
ino
)
new
->
ino
=
++
c
->
highest_ino
;
D2
(
printk
(
KERN_DEBUG
"jffs2_add_ino_cache: Add %p (ino #%u)
\n
"
,
new
,
new
->
ino
));
prev
=
&
c
->
inocache_list
[
new
->
ino
%
INOCACHE_HASHSIZE
];
while
((
*
prev
)
&&
(
*
prev
)
->
ino
<
new
->
ino
)
{
...
...
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