]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ceph: convert comma to semicolon in __ceph_dentry_dir_lease_touch()
authorChen Ni <nichen@iscas.ac.cn>
Tue, 9 Jul 2024 06:44:00 +0000 (14:44 +0800)
committerIlya Dryomov <idryomov@gmail.com>
Tue, 23 Jul 2024 08:01:57 +0000 (10:01 +0200)
Replace a comma between expression statements by a semicolon.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: Xiubo Li <xiubli@redhat.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
fs/ceph/dir.c

index 82a2e2a06a659fd108d1d0a002bfdbefb24a2053..e4e7a856e9c28529ffccdb8cee154f2de81f5a23 100644 (file)
@@ -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);
 }