mirror of
https://github.com/ceph/ceph
synced 2025-04-01 23:02:17 +00:00
Merge PR #40427 into master
* refs/pull/40427/head: mds: skip the buffer in UnknownPayload::decode() Reviewed-by: Patrick Donnelly <pdonnell@redhat.com>
This commit is contained in:
commit
c20ee8eedf
@ -367,6 +367,10 @@ struct UnknownPayload {
|
||||
}
|
||||
|
||||
void decode(bufferlist::const_iterator &iter) {
|
||||
using ceph::decode;
|
||||
DECODE_START(254, iter);
|
||||
iter.seek(struct_len);
|
||||
DECODE_FINISH(iter);
|
||||
}
|
||||
|
||||
void dump(Formatter *f) const {
|
||||
|
Loading…
Reference in New Issue
Block a user