projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
65d284a
)
ceph: convert comma to semicolon in __ceph_dentry_dir_lease_touch()
author
Chen Ni
<nichen@iscas.ac.cn>
Tue, 9 Jul 2024 06:44:00 +0000
(14:44 +0800)
committer
Ilya 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
patch
|
blob
|
blame
|
history
diff --git
a/fs/ceph/dir.c
b/fs/ceph/dir.c
index 82a2e2a06a659fd108d1d0a002bfdbefb24a2053..e4e7a856e9c28529ffccdb8cee154f2de81f5a23 100644
(file)
--- 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);
}