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
820dbc21
Commit
820dbc21
authored
Feb 19, 2004
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FREEVXFS]: Fix u64 printk warnings on some 64-bit platforms.
parent
3ff02490
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
fs/freevxfs/vxfs_bmap.c
fs/freevxfs/vxfs_bmap.c
+6
-2
No files found.
fs/freevxfs/vxfs_bmap.c
View file @
820dbc21
...
@@ -167,7 +167,9 @@ vxfs_bmap_indir(struct inode *ip, long indir, int size, long block)
...
@@ -167,7 +167,9 @@ vxfs_bmap_indir(struct inode *ip, long indir, int size, long block)
printk
(
KERN_INFO
"
\n\n
TYPED_DEV4 detected!
\n
"
);
printk
(
KERN_INFO
"
\n\n
TYPED_DEV4 detected!
\n
"
);
printk
(
KERN_INFO
"block: %Lu
\t
size: %Ld
\t
dev: %d
\n
"
,
printk
(
KERN_INFO
"block: %Lu
\t
size: %Ld
\t
dev: %d
\n
"
,
typ4
->
vd4_block
,
typ4
->
vd4_size
,
typ4
->
vd4_dev
);
(
unsigned
long
long
)
typ4
->
vd4_block
,
(
unsigned
long
long
)
typ4
->
vd4_size
,
typ4
->
vd4_dev
);
goto
fail
;
goto
fail
;
}
}
default:
default:
...
@@ -228,7 +230,9 @@ vxfs_bmap_typed(struct inode *ip, long iblock)
...
@@ -228,7 +230,9 @@ vxfs_bmap_typed(struct inode *ip, long iblock)
printk
(
KERN_INFO
"
\n\n
TYPED_DEV4 detected!
\n
"
);
printk
(
KERN_INFO
"
\n\n
TYPED_DEV4 detected!
\n
"
);
printk
(
KERN_INFO
"block: %Lu
\t
size: %Ld
\t
dev: %d
\n
"
,
printk
(
KERN_INFO
"block: %Lu
\t
size: %Ld
\t
dev: %d
\n
"
,
typ4
->
vd4_block
,
typ4
->
vd4_size
,
typ4
->
vd4_dev
);
(
unsigned
long
long
)
typ4
->
vd4_block
,
(
unsigned
long
long
)
typ4
->
vd4_size
,
typ4
->
vd4_dev
);
return
0
;
return
0
;
}
}
default:
default:
...
...
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