linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [UPDATE][8/24]efs modify format strings
@ 2006-05-25 12:46 sho
  2006-05-25 13:12 ` [UPDATE][7/24]several messages Jan Engelhardt
  0 siblings, 1 reply; 2+ messages in thread
From: sho @ 2006-05-25 12:46 UTC (permalink / raw)
  To: adilger, cmm, jitendra; +Cc: ext2-devel, linux-kernel

Summary of this patch:
  [8/24]  modify format strings in print(efs)
          - 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/efs/file.c linux-2.6.17-rc4.tmp/fs/efs/file.c
--- linux-2.6.17-rc4/fs/efs/file.c	2006-03-20 14:53:29.000000000 +0900
+++ linux-2.6.17-rc4.tmp/fs/efs/file.c	2006-05-25 16:32:28.543691208 +0900
@@ -22,7 +22,7 @@ int efs_get_block(struct inode *inode, s
 		/*
 		 * i have no idea why this happens as often as it does
 		 */
-		printk(KERN_WARNING "EFS: bmap(): block %d >= %ld (filesize %ld)\n",
+		printk(KERN_WARNING "EFS: bmap(): block %d >= %lld (filesize %ld)\n",
 			block,
 			inode->i_blocks,
 			inode->i_size);
@@ -48,7 +48,7 @@ int efs_bmap(struct inode *inode, efs_bl
 		/*
 		 * i have no idea why this happens as often as it does
 		 */
-		printk(KERN_WARNING "EFS: bmap(): block %d >= %ld (filesize %ld)\n",
+		printk(KERN_WARNING "EFS: bmap(): block %d >= %lld (filesize %ld)\n",
 			block,
 			inode->i_blocks,
 			inode->i_size);




^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [UPDATE][7/24]several messages
  2006-05-25 12:46 [UPDATE][8/24]efs modify format strings sho
@ 2006-05-25 13:12 ` Jan Engelhardt
  0 siblings, 0 replies; 2+ messages in thread
From: Jan Engelhardt @ 2006-05-25 13:12 UTC (permalink / raw)
  To: sho; +Cc: adilger, cmm, jitendra, 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.
>
>-        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);

Does gcc automatically promote/demote the arguments according to the % 
specifier? Otherwise, you should add an explicit cast to (long) or 
(long long) with varargs functions, since you cannot be sure that 
->i_blocks (blkcnt_t) is the same as long/long long.

>Summary of this patch:
>  [8/24]  modify format strings in print(efs)
>          - As i_blocks of VFS inode gets 8 byte variable, change its
>            string format to %lld.
>
>@@ -22,7 +22,7 @@ int efs_get_block(struct inode *inode, s
> 		/*
> 		 * i have no idea why this happens as often as it does
> 		 */
>-		printk(KERN_WARNING "EFS: bmap(): block %d >= %ld (filesize %ld)\n",
>+		printk(KERN_WARNING "EFS: bmap(): block %d >= %lld (filesize %ld)\n",



Jan Engelhardt
-- 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-05-25 13:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-25 12:46 [UPDATE][8/24]efs modify format strings sho
2006-05-25 13:12 ` [UPDATE][7/24]several messages Jan Engelhardt

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).