summaryrefslogtreecommitdiff
path: root/fs/ext4/inline.c
diff options
context:
space:
mode:
authorKyoungho Koo <rnrudgh@gmail.com>2020-08-10 11:07:05 +0300
committerTheodore Ts'o <tytso@mit.edu>2020-08-18 21:25:54 +0300
commit2fe34d2938181b26f86bceb7b87fbf7370bd92c4 (patch)
treee070f2a447debe72ce36ef481e3a1575b7ab584a /fs/ext4/inline.c
parente0d438c72abe0cb000d67c0795b0341f9e763836 (diff)
downloadlinux-2fe34d2938181b26f86bceb7b87fbf7370bd92c4.tar.xz
ext4: remove unused parameter of ext4_generic_delete_entry function
The ext4_generic_delete_entry function does not use the parameter handle, so it can be removed. Signed-off-by: Kyoungho Koo <rnrudgh@gmail.com> Reviewed-by: Ritesh Harjani <riteshh@linux.ibm.com> Link: https://lore.kernel.org/r/20200810080701.GA14160@koo-Z370-HD3 Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/inline.c')
-rw-r--r--fs/ext4/inline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c
index c3a1ad2db122..13054653a06a 100644
--- a/fs/ext4/inline.c
+++ b/fs/ext4/inline.c
@@ -1706,7 +1706,7 @@ int ext4_delete_inline_entry(handle_t *handle,
if (err)
goto out;
- err = ext4_generic_delete_entry(handle, dir, de_del, bh,
+ err = ext4_generic_delete_entry(dir, de_del, bh,
inline_start, inline_size, 0);
if (err)
goto out;