diff options
author | Patrick Donnelly <pdonnell@redhat.com> | 2024-06-26 12:57:27 -0400 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2024-11-19 11:08:17 +0100 |
commit | 8b41ac43c7bb902786eae09cc23bcc9964ef2386 (patch) | |
tree | 9b1187f3e40a77ecd3149b8ab22c99119283eb82 /include/linux/ceph | |
parent | 50f42c489528566ea2d8a9561ee54748b0441d51 (diff) | |
download | lwn-8b41ac43c7bb902786eae09cc23bcc9964ef2386.tar.gz lwn-8b41ac43c7bb902786eae09cc23bcc9964ef2386.zip |
ceph: correct ceph_mds_cap_peer field name
The peer seq is used as the issue_seq. Use that name for consistency.
See also ceph.git commit 1da6ef237fc7 ("include/ceph_fs: correct
ceph_mds_cap_peer field name").
Link: https://tracker.ceph.com/issues/66704
Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'include/linux/ceph')
-rw-r--r-- | include/linux/ceph/ceph_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/ceph/ceph_fs.h b/include/linux/ceph/ceph_fs.h index 4ff3ad5e9210..2d7d86f0290d 100644 --- a/include/linux/ceph/ceph_fs.h +++ b/include/linux/ceph/ceph_fs.h @@ -808,7 +808,7 @@ struct ceph_mds_caps { struct ceph_mds_cap_peer { __le64 cap_id; - __le32 seq; + __le32 issue_seq; __le32 mseq; __le32 mds; __u8 flags; |