diff options
author | Mateusz Guzik <mjguzik@gmail.com> | 2025-09-15 15:57:29 +0300 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2025-09-15 17:09:42 +0300 |
commit | f99b3917789d83ea89b24b722d784956f8289f45 (patch) | |
tree | baaf3399c67cd4fb24a6c6a433d7ef357410c7d3 /drivers/misc/ibmasm | |
parent | 74792608606a525a0e0df7e8d48acd8000561389 (diff) | |
download | linux-f99b3917789d83ea89b24b722d784956f8289f45.tar.xz |
fs: rename generic_delete_inode() and generic_drop_inode()
generic_delete_inode() is rather misleading for what the routine is
doing. inode_just_drop() should be much clearer.
The new naming is inconsistent with generic_drop_inode(), so rename that
one as well with inode_ as the suffix.
No functional changes.
Signed-off-by: Mateusz Guzik <mjguzik@gmail.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'drivers/misc/ibmasm')
-rw-r--r-- | drivers/misc/ibmasm/ibmasmfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/ibmasm/ibmasmfs.c b/drivers/misc/ibmasm/ibmasmfs.c index c44de892a61e..5372ed2a363e 100644 --- a/drivers/misc/ibmasm/ibmasmfs.c +++ b/drivers/misc/ibmasm/ibmasmfs.c @@ -94,7 +94,7 @@ static int ibmasmfs_init_fs_context(struct fs_context *fc) static const struct super_operations ibmasmfs_s_ops = { .statfs = simple_statfs, - .drop_inode = generic_delete_inode, + .drop_inode = inode_just_drop, }; static const struct file_operations *ibmasmfs_dir_ops = &simple_dir_operations; |