From: Xiubo Li Date: Mon, 6 Jun 2022 12:15:33 +0000 (+0800) Subject: ceph: fix the incorrect comment for the ceph_mds_caps struct X-Git-Tag: howlett/maple/20220816~100^2~15 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=1b7587d69ea7b8c350195392bfd30a0f31374ae4;p=users%2Fjedix%2Flinux-maple.git ceph: fix the incorrect comment for the ceph_mds_caps struct The incorrect comment is misleading. Acutally the last members in ceph_mds_caps strcut is a union for none export and export bodies. Signed-off-by: Xiubo Li Reviewed-by: Jeff Layton Signed-off-by: Ilya Dryomov --- diff --git a/include/linux/ceph/ceph_fs.h b/include/linux/ceph/ceph_fs.h index 86bf82dbd8b8..40740e234ce1 100644 --- a/include/linux/ceph/ceph_fs.h +++ b/include/linux/ceph/ceph_fs.h @@ -768,7 +768,7 @@ struct ceph_mds_caps { __le32 xattr_len; __le64 xattr_version; - /* filelock */ + /* a union of non-export and export bodies. */ __le64 size, max_size, truncate_size; __le32 truncate_seq; struct ceph_timespec mtime, atime, ctime;