diff options
author | 2024-09-28 08:40:36 -0700 | |
---|---|---|
committer | 2024-09-28 08:40:36 -0700 | |
commit | 894b3c35d1de9cfa4f72b21e280d80d278879c20 (patch) | |
tree | d0ac16e7248ddedd1767780046dd1aba12dc266b /fs/ceph/inode.c | |
parent | Merge tag 'v6.12-rc-ksmbd-server-fixes' of git://git.samba.org/ksmbd (diff) | |
parent | ceph: remove the incorrect Fw reference check when dirtying pages (diff) | |
download | wireguard-linux-894b3c35d1de9cfa4f72b21e280d80d278879c20.tar.xz wireguard-linux-894b3c35d1de9cfa4f72b21e280d80d278879c20.zip |
Merge tag 'ceph-for-6.12-rc1' of https://github.com/ceph/ceph-client
Pull ceph updates from Ilya Dryomov:
"Three CephFS fixes from Xiubo and Luis and a bunch of assorted
cleanups"
* tag 'ceph-for-6.12-rc1' of https://github.com/ceph/ceph-client:
ceph: remove the incorrect Fw reference check when dirtying pages
ceph: Remove empty definition in header file
ceph: Fix typo in the comment
ceph: fix a memory leak on cap_auths in MDS client
ceph: flush all caps releases when syncing the whole filesystem
ceph: rename ceph_flush_cap_releases() to ceph_flush_session_cap_releases()
libceph: use min() to simplify code in ceph_dns_resolve_name()
ceph: Convert to use jiffies macro
ceph: Remove unused declarations
Diffstat (limited to 'fs/ceph/inode.c')
-rw-r--r-- | fs/ceph/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/inode.c b/fs/ceph/inode.c index 4a8eec46254b..315ef02f9a3f 100644 --- a/fs/ceph/inode.c +++ b/fs/ceph/inode.c @@ -1779,7 +1779,7 @@ retry_lookup: if (err < 0) goto done; } else if (rinfo->head->is_dentry && req->r_dentry) { - /* parent inode is not locked, be carefull */ + /* parent inode is not locked, be careful */ struct ceph_vino *ptvino = NULL; dvino.ino = le64_to_cpu(rinfo->diri.in->ino); dvino.snap = le64_to_cpu(rinfo->diri.in->snapid); |