From: Deepa Dinamani Date: Tue, 3 Dec 2019 05:19:45 +0000 (-0800) Subject: fs: Do not overload update_time X-Git-Tag: microblaze-v5.7-rc1~74^2~1 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=23b424d9c36e6205d38130f9d96fa755e51e8817;p=linux-2.6-microblaze.git fs: Do not overload update_time update_time() also has an internal function pointer update_time. Even though this works correctly, it is confusing to the readers. Just use a regular if statement to call the generic function or the function pointer. Suggested-by: Al Viro Signed-off-by: Deepa Dinamani Signed-off-by: Al Viro --- diff --git a/fs/inode.c b/fs/inode.c index 12c9e38529c9..aff2b5831168 100644 --- a/fs/inode.c +++ b/fs/inode.c @@ -1675,12 +1675,9 @@ EXPORT_SYMBOL(generic_update_time); */ static int update_time(struct inode *inode, struct timespec64 *time, int flags) { - int (*update_time)(struct inode *, struct timespec64 *, int); - - update_time = inode->i_op->update_time ? inode->i_op->update_time : - generic_update_time; - - return update_time(inode, time, flags); + if (inode->i_op->update_time) + return inode->i_op->update_time(inode, time, flags); + return generic_update_time(inode, time, flags); } /**