linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [UPDATE][7/24]bfs modify format strings
@ 2006-05-25 12:45 sho
  0 siblings, 0 replies; only message in thread
From: sho @ 2006-05-25 12:45 UTC (permalink / raw)
  To: adilger, cmm, jitendra; +Cc: ext2-devel, linux-kernel

Summary of this patch:
  [7/24]  modify format strings in print(bfs)
          - As i_blocks of VFS inode gets 8 byte variable, change its
            string format to %lld.

Signed-off-by: Takashi Sato sho@tnes.nec.co.jp
---
diff -upNr -X linux-2.6.17-rc4/Documentation/dontdiff linux-2.6.17-rc4/fs/bfs/inode.c linux-2.6.17-rc4.tmp/fs/bfs/inode.c
--- linux-2.6.17-rc4/fs/bfs/inode.c	2006-05-25 16:18:35.664795161 +0900
+++ linux-2.6.17-rc4.tmp/fs/bfs/inode.c	2006-05-25 16:32:04.666738376 +0900
@@ -75,7 +75,7 @@ static void bfs_read_inode(struct inode 
 	inode->i_nlink =  le32_to_cpu(di->i_nlink);
 	inode->i_size = BFS_FILESIZE(di);
 	inode->i_blocks = BFS_FILEBLOCKS(di);
-        if (inode->i_size || inode->i_blocks) dprintf("Registered inode with %lld size, %ld blocks\n", inode->i_size, inode->i_blocks);
+        if (inode->i_size || inode->i_blocks) dprintf("Registered inode with %lld size, %lld blocks\n", inode->i_size, inode->i_blocks);
 	inode->i_blksize = PAGE_SIZE;
 	inode->i_atime.tv_sec =  le32_to_cpu(di->i_atime);
 	inode->i_mtime.tv_sec =  le32_to_cpu(di->i_mtime);




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-05-25 12:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-25 12:45 [UPDATE][7/24]bfs modify format strings sho

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).