public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH]ext4: Fix compile warnings with EXT4FS_DEBUG
@ 2011-01-21  7:35 Akira Fujita
  2011-02-22  1:52 ` Ted Ts'o
  0 siblings, 1 reply; 3+ messages in thread
From: Akira Fujita @ 2011-01-21  7:35 UTC (permalink / raw)
  To: Theodore Tso, ext4 development

Compile 2.6.38-rc1 with turning EXT4FS_DEBUG on,
we get following compile warnings. This patch fixes them.

  CC      fs/ext4/hash.o
  CC      fs/ext4/resize.o
fs/ext4/resize.c: In function 'setup_new_group_blocks':
fs/ext4/resize.c:233:2: warning: format '%#04llx' expects type 'long long unsigned int', but argument 3 has type 'long unsigned int'
fs/ext4/resize.c:251:2: warning: format '%#04llx' expects type 'long long unsigned int', but argument 3 has type 'long unsigned int'
  CC      fs/ext4/extents.o
  CC      fs/ext4/ext4_jbd2.o
  CC      fs/ext4/migrate.o

Signed-off-by: Akira Fujita <a-fujita@rs.jp.nec.com>
---
 fs/ext4/resize.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff -Nrup -X linux-2.6.38-rc1-a/Documentation/dontdiff linux-2.6.38-rc1-a/fs/ext4/resize.c linux-2.6.38-rc1-b/fs/ext4/resize.c
--- linux-2.6.38-rc1-a/fs/ext4/resize.c 2011-01-21 14:07:55.000000000 +0900
+++ linux-2.6.38-rc1-b/fs/ext4/resize.c 2011-01-21 14:08:49.000000000 +0900
@@ -231,7 +231,7 @@ static int setup_new_group_blocks(struct

        /* Zero out all of the reserved backup group descriptor table blocks */
        ext4_debug("clear inode table blocks %#04llx -> %#04llx\n",
-                       block, sbi->s_itb_per_group);
+                       block, (ext4_fsblk_t)sbi->s_itb_per_group);
        err = sb_issue_zeroout(sb, gdblocks + start + 1, reserved_gdb,
                               GFP_NOFS);
        if (err)
@@ -249,7 +249,7 @@ static int setup_new_group_blocks(struct
        /* Zero out all of the inode table blocks */
        block = input->inode_table;
        ext4_debug("clear inode table blocks %#04llx -> %#04llx\n",
-                       block, sbi->s_itb_per_group);
+                       block, (ext4_fsblk_t)sbi->s_itb_per_group);
        err = sb_issue_zeroout(sb, block, sbi->s_itb_per_group, GFP_NOFS);
        if (err)
                goto exit_bh;


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

* Re: [PATCH]ext4: Fix compile warnings with EXT4FS_DEBUG
  2011-01-21  7:35 [PATCH]ext4: Fix compile warnings with EXT4FS_DEBUG Akira Fujita
@ 2011-02-22  1:52 ` Ted Ts'o
  2011-02-22  3:05   ` Akira Fujita
  0 siblings, 1 reply; 3+ messages in thread
From: Ted Ts'o @ 2011-02-22  1:52 UTC (permalink / raw)
  To: Akira Fujita; +Cc: ext4 development

On Fri, Jan 21, 2011 at 04:35:14PM +0900, Akira Fujita wrote:
>         ext4_debug("clear inode table blocks %#04llx -> %#04llx\n",
> -                       block, sbi->s_itb_per_group);
> +                       block, (ext4_fsblk_t)sbi->s_itb_per_group);

s_itb_per_group is defined to be an unsigned long, so a much better
fix is simply to change the format string.

       	      	 	    	   - Ted

>From da488945f4bf4096f4ab6091938469bd8822cfec Mon Sep 17 00:00:00 2001
From: Theodore Ts'o <tytso@mit.edu>
Date: Mon, 21 Feb 2011 20:39:58 -0500
Subject: [PATCH] ext4: fix compile warnings with EXT4FS_DEBUG enabled

Compile 2.6.38-rc1 with turning EXT4FS_DEBUG on,
we get following compile warnings. This patch fixes them.

  CC      fs/ext4/hash.o
  CC      fs/ext4/resize.o
fs/ext4/resize.c: In function 'setup_new_group_blocks':
fs/ext4/resize.c:233:2: warning: format '%#04llx' expects type 'long long
unsigned int', but argument 3 has type 'long unsigned int'
fs/ext4/resize.c:251:2: warning: format '%#04llx' expects type 'long long
unsigned int', but argument 3 has type 'long unsigned int'
  CC      fs/ext4/extents.o
  CC      fs/ext4/ext4_jbd2.o
  CC      fs/ext4/migrate.o

Reported-by: Akira Fujita <a-fujita@rs.jp.nec.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
---
 fs/ext4/resize.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c
index 3ecc6e4..66fec4e 100644
--- a/fs/ext4/resize.c
+++ b/fs/ext4/resize.c
@@ -230,7 +230,7 @@ static int setup_new_group_blocks(struct super_block *sb,
 	}
 
 	/* Zero out all of the reserved backup group descriptor table blocks */
-	ext4_debug("clear inode table blocks %#04llx -> %#04llx\n",
+	ext4_debug("clear inode table blocks %#04llx -> %#04lx\n",
 			block, sbi->s_itb_per_group);
 	err = sb_issue_zeroout(sb, gdblocks + start + 1, reserved_gdb,
 			       GFP_NOFS);
@@ -248,7 +248,7 @@ static int setup_new_group_blocks(struct super_block *sb,
 
 	/* Zero out all of the inode table blocks */
 	block = input->inode_table;
-	ext4_debug("clear inode table blocks %#04llx -> %#04llx\n",
+	ext4_debug("clear inode table blocks %#04llx -> %#04lx\n",
 			block, sbi->s_itb_per_group);
 	err = sb_issue_zeroout(sb, block, sbi->s_itb_per_group, GFP_NOFS);
 	if (err)
-- 
1.7.3.1


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

* Re: [PATCH]ext4: Fix compile warnings with EXT4FS_DEBUG
  2011-02-22  1:52 ` Ted Ts'o
@ 2011-02-22  3:05   ` Akira Fujita
  0 siblings, 0 replies; 3+ messages in thread
From: Akira Fujita @ 2011-02-22  3:05 UTC (permalink / raw)
  To: Ted Ts'o; +Cc: ext4 development

Hi,

> s_itb_per_group is defined to be an unsigned long, so a much better
> fix is simply to change the format string.

Thanks for your work. ;)

(2011/02/22 10:52), Ted Ts'o wrote:
> On Fri, Jan 21, 2011 at 04:35:14PM +0900, Akira Fujita wrote:
>>          ext4_debug("clear inode table blocks %#04llx ->  %#04llx\n",
>> -                       block, sbi->s_itb_per_group);
>> +                       block, (ext4_fsblk_t)sbi->s_itb_per_group);
> 
> s_itb_per_group is defined to be an unsigned long, so a much better
> fix is simply to change the format string.
> 
>         	      	 	    	   - Ted
> 
>> From da488945f4bf4096f4ab6091938469bd8822cfec Mon Sep 17 00:00:00 2001
> From: Theodore Ts'o<tytso@mit.edu>
> Date: Mon, 21 Feb 2011 20:39:58 -0500
> Subject: [PATCH] ext4: fix compile warnings with EXT4FS_DEBUG enabled
> 
> Compile 2.6.38-rc1 with turning EXT4FS_DEBUG on,
> we get following compile warnings. This patch fixes them.
> 
>    CC      fs/ext4/hash.o
>    CC      fs/ext4/resize.o
> fs/ext4/resize.c: In function 'setup_new_group_blocks':
> fs/ext4/resize.c:233:2: warning: format '%#04llx' expects type 'long long
> unsigned int', but argument 3 has type 'long unsigned int'
> fs/ext4/resize.c:251:2: warning: format '%#04llx' expects type 'long long
> unsigned int', but argument 3 has type 'long unsigned int'
>    CC      fs/ext4/extents.o
>    CC      fs/ext4/ext4_jbd2.o
>    CC      fs/ext4/migrate.o
> 
> Reported-by: Akira Fujita<a-fujita@rs.jp.nec.com>
> Signed-off-by: "Theodore Ts'o"<tytso@mit.edu>
> ---
>   fs/ext4/resize.c |    4 ++--
>   1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c
> index 3ecc6e4..66fec4e 100644
> --- a/fs/ext4/resize.c
> +++ b/fs/ext4/resize.c
> @@ -230,7 +230,7 @@ static int setup_new_group_blocks(struct super_block *sb,
>   	}
> 
>   	/* Zero out all of the reserved backup group descriptor table blocks */
> -	ext4_debug("clear inode table blocks %#04llx ->  %#04llx\n",
> +	ext4_debug("clear inode table blocks %#04llx ->  %#04lx\n",
>   			block, sbi->s_itb_per_group);
>   	err = sb_issue_zeroout(sb, gdblocks + start + 1, reserved_gdb,
>   			       GFP_NOFS);
> @@ -248,7 +248,7 @@ static int setup_new_group_blocks(struct super_block *sb,
> 
>   	/* Zero out all of the inode table blocks */
>   	block = input->inode_table;
> -	ext4_debug("clear inode table blocks %#04llx ->  %#04llx\n",
> +	ext4_debug("clear inode table blocks %#04llx ->  %#04lx\n",
>   			block, sbi->s_itb_per_group);
>   	err = sb_issue_zeroout(sb, block, sbi->s_itb_per_group, GFP_NOFS);
>   	if (err)


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

end of thread, other threads:[~2011-02-22  3:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-21  7:35 [PATCH]ext4: Fix compile warnings with EXT4FS_DEBUG Akira Fujita
2011-02-22  1:52 ` Ted Ts'o
2011-02-22  3:05   ` Akira Fujita

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox