diff options
author | Kyoungho Koo <rnrudgh@gmail.com> | 2020-08-10 17:07:05 +0900 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2020-08-18 14:25:54 -0400 |
commit | 2fe34d2938181b26f86bceb7b87fbf7370bd92c4 (patch) | |
tree | e070f2a447debe72ce36ef481e3a1575b7ab584a /fs/ext4/inline.c | |
parent | e0d438c72abe0cb000d67c0795b0341f9e763836 (diff) |
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.c | 2 |
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; |