diff options
author | Theodore Ts'o <tytso@mit.edu> | 2009-06-13 10:09:41 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2009-06-13 10:09:41 -0400 |
commit | 7f4520cc6242780ce720aa440ad4b391f998b558 (patch) | |
tree | c8f1d99e019f2e29a967851031f4a60bf7ab1467 /fs/ext4/inode.c | |
parent | 748de6736c1e482e111f9d1b5a5d5b1787600cad (diff) | |
download | linux-stable-7f4520cc6242780ce720aa440ad4b391f998b558.tar.gz linux-stable-7f4520cc6242780ce720aa440ad4b391f998b558.tar.bz2 linux-stable-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/inode.c')
-rw-r--r-- | fs/ext4/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 2418ad36eab5..f8325a2bc897 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c @@ -93,7 +93,7 @@ int ext4_forget(handle_t *handle, int is_metadata, struct inode *inode, BUFFER_TRACE(bh, "enter"); jbd_debug(4, "forgetting bh %p: is_metadata = %d, mode %o, " - "data mode %lx\n", + "data mode %x\n", bh, is_metadata, inode->i_mode, test_opt(inode->i_sb, DATA_FLAGS)); |