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
e5f8eab8
Commit
e5f8eab8
authored
Sep 08, 2008
by
Theodore Ts'o
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ext4: Fix long long checkpatch warnings
Signed-off-by:
"Theodore Ts'o"
<
tytso@mit.edu
>
parent
4776004f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
fs/ext4/super.c
fs/ext4/super.c
+4
-4
No files found.
fs/ext4/super.c
View file @
e5f8eab8
...
...
@@ -1716,9 +1716,9 @@ static void ext4_orphan_cleanup(struct super_block *sb,
DQUOT_INIT
(
inode
);
if
(
inode
->
i_nlink
)
{
printk
(
KERN_DEBUG
"%s: truncating inode %lu to %
L
d bytes
\n
"
,
"%s: truncating inode %lu to %
ll
d bytes
\n
"
,
__func__
,
inode
->
i_ino
,
inode
->
i_size
);
jbd_debug
(
2
,
"truncating inode %lu to %
L
d bytes
\n
"
,
jbd_debug
(
2
,
"truncating inode %lu to %
ll
d bytes
\n
"
,
inode
->
i_ino
,
inode
->
i_size
);
ext4_truncate
(
inode
);
nr_truncates
++
;
...
...
@@ -2554,7 +2554,7 @@ static journal_t *ext4_get_journal(struct super_block *sb,
return
NULL
;
}
jbd_debug
(
2
,
"Journal inode found at %p: %
L
d bytes
\n
"
,
jbd_debug
(
2
,
"Journal inode found at %p: %
ll
d bytes
\n
"
,
journal_inode
,
journal_inode
->
i_size
);
if
(
!
S_ISREG
(
journal_inode
->
i_mode
))
{
printk
(
KERN_ERR
"EXT4-fs: invalid journal inode.
\n
"
);
...
...
@@ -3439,7 +3439,7 @@ static ssize_t ext4_quota_write(struct super_block *sb, int type,
handle_t
*
handle
=
journal_current_handle
();
if
(
!
handle
)
{
printk
(
KERN_WARNING
"EXT4-fs: Quota write (off=%
Lu, len=%L
u)"
printk
(
KERN_WARNING
"EXT4-fs: Quota write (off=%
llu, len=%ll
u)"
" cancelled because transaction is not started.
\n
"
,
(
unsigned
long
long
)
off
,
(
unsigned
long
long
)
len
);
return
-
EIO
;
...
...
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