projects
/
platform
/
upstream
/
kernel-adaptation-pc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3864cae
)
[GFS2] Add cast for printk
author
Steven Whitehouse
<swhiteho@redhat.com>
Wed, 5 Jul 2006 17:14:59 +0000
(13:14 -0400)
committer
Steven Whitehouse
<swhiteho@redhat.com>
Wed, 5 Jul 2006 17:14:59 +0000
(13:14 -0400)
Cast a uint64_t to unsigned long long for a printk.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/log.c
patch
|
blob
|
history
diff --git
a/fs/gfs2/log.c
b/fs/gfs2/log.c
index
483d4fa
..
1596e94
100644
(file)
--- a/
fs/gfs2/log.c
+++ b/
fs/gfs2/log.c
@@
-214,7
+214,7
@@
static uint64_t log_bmap(struct gfs2_sbd *sdp, unsigned int lbn)
error = gfs2_block_map(sdp->sd_jdesc->jd_inode, lbn, &new, &dbn, &bdy);
if (!(!error && dbn)) {
- printk(KERN_INFO "error=%d, dbn=%llu lbn=%u", error, dbn, lbn);
+ printk(KERN_INFO "error=%d, dbn=%llu lbn=%u", error,
(unsigned long long)
dbn, lbn);
}
gfs2_assert_withdraw(sdp, !error && dbn);