aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/log.c
diff options
context:
space:
mode:
authorRyusuke Konishi <ryusuke@osrg.net>2006-11-28 02:53:22 +0900
committerSteven Whitehouse <swhiteho@redhat.com>2006-11-30 10:37:04 -0500
commitaed3255f2267e2d1d95b9cf7f2995ce24e6c873b (patch)
tree0a3a82c6064c9dc21347ffbc019d1fb1acb6de67 /fs/gfs2/log.c
parent[DLM] fix add_requestqueue checking nodes list (diff)
downloadlinux-dev-aed3255f2267e2d1d95b9cf7f2995ce24e6c873b.tar.xz
linux-dev-aed3255f2267e2d1d95b9cf7f2995ce24e6c873b.zip
[GFS2] fs/gfs2/log.c:log_bmap() fix printk format warning
Fix a printk format warning in fs/gfs2/log.c: fs/gfs2/log.c:322: warning: format '%llu' expects type 'long long unsigned int', but argument 3 has type 'sector_t' Signed-off-by: Ryusuke Konishi <ryusuke@osrg.net> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/log.c')
-rw-r--r--fs/gfs2/log.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/gfs2/log.c b/fs/gfs2/log.c
index 7713d5918672..291415ddfe51 100644
--- a/fs/gfs2/log.c
+++ b/fs/gfs2/log.c
@@ -326,7 +326,8 @@ static u64 log_bmap(struct gfs2_sbd *sdp, unsigned int lbn)
bh_map.b_size = 1 << inode->i_blkbits;
error = gfs2_block_map(inode, lbn, 0, &bh_map);
if (error || !bh_map.b_blocknr)
- printk(KERN_INFO "error=%d, dbn=%llu lbn=%u", error, bh_map.b_blocknr, lbn);
+ printk(KERN_INFO "error=%d, dbn=%llu lbn=%u", error,
+ (unsigned long long)bh_map.b_blocknr, lbn);
gfs2_assert_withdraw(sdp, !error && bh_map.b_blocknr);
return bh_map.b_blocknr;