Skip to content
This repository has been archived by the owner on Jul 23, 2023. It is now read-only.

Commit

Permalink
f2fs: remove obsolete parameter in f2fs_truncate
Browse files Browse the repository at this point in the history
We don't need lock parameter, which is always true.

Signed-off-by: Jaegeuk Kim <[email protected]>
  • Loading branch information
Jaegeuk Kim committed Jul 22, 2016
1 parent a0c31ec commit 3bcbb3c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion fs/f2fs/f2fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -1900,7 +1900,7 @@ static inline void f2fs_kvfree(void *ptr)
int f2fs_sync_file(struct file *, loff_t, loff_t, int);
void truncate_data_blocks(struct dnode_of_data *);
int truncate_blocks(struct inode *, u64, bool);
int f2fs_truncate(struct inode *, bool);
int f2fs_truncate(struct inode *);
int f2fs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
int f2fs_setattr(struct dentry *, struct iattr *);
int truncate_hole(struct inode *, pgoff_t, pgoff_t);
Expand Down
6 changes: 3 additions & 3 deletions fs/f2fs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ int truncate_blocks(struct inode *inode, u64 from, bool lock)
return err;
}

int f2fs_truncate(struct inode *inode, bool lock)
int f2fs_truncate(struct inode *inode)
{
int err;

Expand All @@ -644,7 +644,7 @@ int f2fs_truncate(struct inode *inode, bool lock)
return err;
}

err = truncate_blocks(inode, i_size_read(inode), lock);
err = truncate_blocks(inode, i_size_read(inode), true);
if (err)
return err;

Expand Down Expand Up @@ -708,7 +708,7 @@ int f2fs_setattr(struct dentry *dentry, struct iattr *attr)

if (attr->ia_size <= i_size_read(inode)) {
truncate_setsize(inode, attr->ia_size);
err = f2fs_truncate(inode, true);
err = f2fs_truncate(inode);
if (err)
return err;
f2fs_balance_fs(F2FS_I_SB(inode), true);
Expand Down
2 changes: 1 addition & 1 deletion fs/f2fs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ void f2fs_evict_inode(struct inode *inode)
i_size_write(inode, 0);
retry:
if (F2FS_HAS_BLOCKS(inode))
err = f2fs_truncate(inode, true);
err = f2fs_truncate(inode);

if (!err) {
f2fs_lock_op(sbi);
Expand Down
2 changes: 1 addition & 1 deletion fs/f2fs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ static int f2fs_drop_inode(struct inode *inode)
f2fs_i_size_write(inode, 0);

if (F2FS_HAS_BLOCKS(inode))
f2fs_truncate(inode, true);
f2fs_truncate(inode);

sb_end_intwrite(inode->i_sb);

Expand Down

0 comments on commit 3bcbb3c

Please sign in to comment.