aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/super.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2008-09-08 22:25:04 -0400
committerTheodore Ts'o <tytso@mit.edu>2008-09-08 22:25:04 -0400
commite5f8eab8851dff162e7ade46f084cb8575dc45f7 (patch)
treed6404da53828fbfa7c84166ff0914ad06b0e12a0 /fs/ext4/super.c
parent4776004f54e4190e104caf620fd0fa5909412236 (diff)
ext4: Fix long long checkpatch warnings
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r--fs/ext4/super.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index ee8695464957..c10aaf7d83c3 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -1716,9 +1716,9 @@ static void ext4_orphan_cleanup(struct super_block *sb,
1716 DQUOT_INIT(inode); 1716 DQUOT_INIT(inode);
1717 if (inode->i_nlink) { 1717 if (inode->i_nlink) {
1718 printk(KERN_DEBUG 1718 printk(KERN_DEBUG
1719 "%s: truncating inode %lu to %Ld bytes\n", 1719 "%s: truncating inode %lu to %lld bytes\n",
1720 __func__, inode->i_ino, inode->i_size); 1720 __func__, inode->i_ino, inode->i_size);
1721 jbd_debug(2, "truncating inode %lu to %Ld bytes\n", 1721 jbd_debug(2, "truncating inode %lu to %lld bytes\n",
1722 inode->i_ino, inode->i_size); 1722 inode->i_ino, inode->i_size);
1723 ext4_truncate(inode); 1723 ext4_truncate(inode);
1724 nr_truncates++; 1724 nr_truncates++;
@@ -2554,7 +2554,7 @@ static journal_t *ext4_get_journal(struct super_block *sb,
2554 return NULL; 2554 return NULL;
2555 } 2555 }
2556 2556
2557 jbd_debug(2, "Journal inode found at %p: %Ld bytes\n", 2557 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
2558 journal_inode, journal_inode->i_size); 2558 journal_inode, journal_inode->i_size);
2559 if (!S_ISREG(journal_inode->i_mode)) { 2559 if (!S_ISREG(journal_inode->i_mode)) {
2560 printk(KERN_ERR "EXT4-fs: invalid journal inode.\n"); 2560 printk(KERN_ERR "EXT4-fs: invalid journal inode.\n");
@@ -3439,7 +3439,7 @@ static ssize_t ext4_quota_write(struct super_block *sb, int type,
3439 handle_t *handle = journal_current_handle(); 3439 handle_t *handle = journal_current_handle();
3440 3440
3441 if (!handle) { 3441 if (!handle) {
3442 printk(KERN_WARNING "EXT4-fs: Quota write (off=%Lu, len=%Lu)" 3442 printk(KERN_WARNING "EXT4-fs: Quota write (off=%llu, len=%llu)"
3443 " cancelled because transaction is not started.\n", 3443 " cancelled because transaction is not started.\n",
3444 (unsigned long long)off, (unsigned long long)len); 3444 (unsigned long long)off, (unsigned long long)len);
3445 return -EIO; 3445 return -EIO;