public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
From: Akira Fujita <a-fujita@rs.jp.nec.com>
To: Theodore Tso <tytso@mit.edu>,
	ext4 development <linux-ext4@vger.kernel.org>
Subject: [PATCH]ext4: Fix compile warnings with EXT4FS_DEBUG
Date: Fri, 21 Jan 2011 16:35:14 +0900	[thread overview]
Message-ID: <4D393732.5020301@rs.jp.nec.com> (raw)

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;


             reply	other threads:[~2011-01-21  7:35 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-21  7:35 Akira Fujita [this message]
2011-02-22  1:52 ` [PATCH]ext4: Fix compile warnings with EXT4FS_DEBUG Ted Ts'o
2011-02-22  3:05   ` Akira Fujita

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4D393732.5020301@rs.jp.nec.com \
    --to=a-fujita@rs.jp.nec.com \
    --cc=linux-ext4@vger.kernel.org \
    --cc=tytso@mit.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox