]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ext4: pass inode pointer instead of file pointer to punch hole
authorAshish Sangwan <a.sangwan@samsung.com>
Tue, 18 Jun 2013 15:24:02 +0000 (11:24 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 18 Jun 2013 15:24:02 +0000 (11:24 -0400)
No need to pass file pointer when we can directly pass inode pointer.

Signed-off-by: Ashish Sangwan <a.sangwan@samsung.com>
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/ext4.h
fs/ext4/extents.c
fs/ext4/inode.c

index 7cc6b18230ec0988a8f2c967fdf0e68646802371..6ed348d8d3eb75e31010b6295bd3668b046c4853 100644 (file)
@@ -2088,7 +2088,7 @@ extern int ext4_change_inode_journal_flag(struct inode *, int);
 extern int ext4_get_inode_loc(struct inode *, struct ext4_iloc *);
 extern int ext4_can_truncate(struct inode *inode);
 extern void ext4_truncate(struct inode *);
-extern int ext4_punch_hole(struct file *file, loff_t offset, loff_t length);
+extern int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length);
 extern int ext4_truncate_restart_trans(handle_t *, struct inode *, int nblocks);
 extern void ext4_set_inode_flags(struct inode *);
 extern void ext4_get_inode_flags(struct ext4_inode_info *);
index 51e41687f51e81613a3add41712c782a171878db..937593e2f00685db06a20ce4827279b2116d7e3c 100644 (file)
@@ -4463,7 +4463,7 @@ long ext4_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
                return -EOPNOTSUPP;
 
        if (mode & FALLOC_FL_PUNCH_HOLE)
-               return ext4_punch_hole(file, offset, len);
+               return ext4_punch_hole(inode, offset, len);
 
        ret = ext4_convert_inline_data(inode);
        if (ret)
index 6a84635634a1f372c60f8203923989ac571893e1..78cf398f0446653bf46acdd5ff99fdd3905a5faf 100644 (file)
@@ -3489,9 +3489,8 @@ static inline int ext4_begin_ordered_punch_hole(struct inode *inode,
  * Returns: 0 on success or negative on failure
  */
 
-int ext4_punch_hole(struct file *file, loff_t offset, loff_t length)
+int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
 {
-       struct inode *inode = file_inode(file);
        struct super_block *sb = inode->i_sb;
        ext4_lblk_t first_block, stop_block;
        loff_t first_block_offset, last_block_offset;