summaryrefslogtreecommitdiffstats
path: root/fs/ext4/super.c
diff options
context:
space:
mode:
authorTheodore Ts'o2009-06-13 16:09:41 +0200
committerTheodore Ts'o2009-06-13 16:09:41 +0200
commit7f4520cc6242780ce720aa440ad4b391f998b558 (patch)
treec8f1d99e019f2e29a967851031f4a60bf7ab1467 /fs/ext4/super.c
parentext4: online defrag -- Add EXT4_IOC_MOVE_EXT ioctl (diff)
downloadkernel-qcow2-linux-7f4520cc6242780ce720aa440ad4b391f998b558.tar.gz
kernel-qcow2-linux-7f4520cc6242780ce720aa440ad4b391f998b558.tar.xz
kernel-qcow2-linux-7f4520cc6242780ce720aa440ad4b391f998b558.zip
ext4: change s_mount_opt to be an unsigned int
We can only fit 32 options in s_mount_opt because an unsigned long is 32-bits on a x86 machine. So use an unsigned int to save space on 64-bit platforms. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r--fs/ext4/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index e8f0b2af4607..4c364ae7aeb1 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -1655,7 +1655,7 @@ static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
ext4_commit_super(sb, 1);
if (test_opt(sb, DEBUG))
printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%u, "
- "bpg=%lu, ipg=%lu, mo=%04lx]\n",
+ "bpg=%lu, ipg=%lu, mo=%04x]\n",
sb->s_blocksize,
sbi->s_groups_count,
EXT4_BLOCKS_PER_GROUP(sb),