From: Christian Brauner Date: Tue, 6 Aug 2024 16:02:28 +0000 (+0200) Subject: proc: proc_readfdinfo() -> proc_fdinfo_iterate() X-Git-Tag: v6.12-rc1~211^2~1^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=55d4860db2a0ae54367401aa09b8fad38f237bfa;p=thirdparty%2Fkernel%2Flinux.git proc: proc_readfdinfo() -> proc_fdinfo_iterate() Give the method to iterate through the fdinfo directory a better name. Link: https://lore.kernel.org/r/20240806-work-procfs-v1-2-fb04e1d09f0c@kernel.org Reviewed-by: Josef Bacik Signed-off-by: Christian Brauner --- diff --git a/fs/proc/fd.c b/fs/proc/fd.c index 7868333a46e7c..105d6ce5b2684 100644 --- a/fs/proc/fd.c +++ b/fs/proc/fd.c @@ -407,7 +407,7 @@ proc_lookupfdinfo(struct inode *dir, struct dentry *dentry, unsigned int flags) return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate); } -static int proc_readfdinfo(struct file *file, struct dir_context *ctx) +static int proc_fdinfo_iterate(struct file *file, struct dir_context *ctx) { return proc_readfd_common(file, ctx, proc_fdinfo_instantiate); @@ -421,6 +421,6 @@ const struct inode_operations proc_fdinfo_inode_operations = { const struct file_operations proc_fdinfo_operations = { .read = generic_read_dir, - .iterate_shared = proc_readfdinfo, + .iterate_shared = proc_fdinfo_iterate, .llseek = generic_file_llseek, };