From: Patrick Donnelly Date: Wed, 26 Jun 2024 16:49:36 +0000 (-0400) Subject: messages/MClientCaps: use correct ceph_seq_t for cap sequence types X-Git-Tag: testing/wip-pdonnell-testing-20241019.005706-debug~5^2~3 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=6d8a73439eddb43e45a82b3d3a24d778244524c3;p=ceph-ci.git messages/MClientCaps: use correct ceph_seq_t for cap sequence types Signed-off-by: Patrick Donnelly --- diff --git a/src/messages/MClientCaps.h b/src/messages/MClientCaps.h index de7d68b9e06..a733168d475 100644 --- a/src/messages/MClientCaps.h +++ b/src/messages/MClientCaps.h @@ -137,11 +137,11 @@ protected: inodeno_t ino, inodeno_t realm, uint64_t id, - long seq, + ceph_seq_t seq, int caps, int wanted, int dirty, - int mseq, + ceph_seq_t mseq, epoch_t oeb) : SafeMessage{CEPH_MSG_CLIENT_CAPS, HEAD_VERSION, COMPAT_VERSION}, osd_epoch_barrier(oeb) { @@ -159,7 +159,7 @@ protected: } MClientCaps(int op, inodeno_t ino, inodeno_t realm, - uint64_t id, int mseq, epoch_t oeb) + uint64_t id, ceph_seq_t mseq, epoch_t oeb) : SafeMessage{CEPH_MSG_CLIENT_CAPS, HEAD_VERSION, COMPAT_VERSION}, osd_epoch_barrier(oeb) { memset(&head, 0, sizeof(head));