From: Bernd Schubert Date: Sat, 16 Jul 2011 23:41:23 +0000 (-0400) Subject: ext4: fix compilation with -DDX_DEBUG X-Git-Tag: upstream/snapshot3+hdmi~9398^2~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=265c6a0f9290c8f470b839257dc6af3c46b24da1;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git ext4: fix compilation with -DDX_DEBUG Compilation of ext4/namei.c brought up an error and warning messages when compiled with -DDX_DEBUG Signed-off-by: Bernd Schubert Signed-off-by: "Theodore Ts'o" --- diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c index 8dde5ab..aaf3131 100644 --- a/fs/ext4/namei.c +++ b/fs/ext4/namei.c @@ -289,7 +289,7 @@ static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext4_dir_ent while (len--) printk("%c", *name++); ext4fs_dirhash(de->name, de->name_len, &h); printk(":%x.%u ", h.hash, - ((char *) de - base)); + (unsigned) ((char *) de - base)); } space += EXT4_DIR_REC_LEN(de->name_len); names++; @@ -1013,7 +1013,7 @@ static struct buffer_head * ext4_dx_find_entry(struct inode *dir, const struct q *err = -ENOENT; errout: - dxtrace(printk(KERN_DEBUG "%s not found\n", name)); + dxtrace(printk(KERN_DEBUG "%s not found\n", d_name->name)); dx_release (frames); return NULL; }