From: Chen Ni Date: Tue, 9 Jul 2024 06:44:00 +0000 (+0800) Subject: ceph: convert comma to semicolon in __ceph_dentry_dir_lease_touch() X-Git-Tag: v6.11-rc1~36^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=77bb4a501a7756e6f5428b72fb0e420deb7ae562;p=thirdparty%2Fkernel%2Flinux.git ceph: convert comma to semicolon in __ceph_dentry_dir_lease_touch() Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni Reviewed-by: Xiubo Li Signed-off-by: Ilya Dryomov --- diff --git a/fs/ceph/dir.c b/fs/ceph/dir.c index 82a2e2a06a659..e4e7a856e9c28 100644 --- a/fs/ceph/dir.c +++ b/fs/ceph/dir.c @@ -1589,7 +1589,7 @@ void __ceph_dentry_dir_lease_touch(struct ceph_dentry_info *di) } spin_lock(&mdsc->dentry_list_lock); - __dentry_dir_lease_touch(mdsc, di), + __dentry_dir_lease_touch(mdsc, di); spin_unlock(&mdsc->dentry_list_lock); }