------- Comment From [email protected] 2019-01-09 11:25 EDT-------
>From the stack backtrace ...

8: (__cxa_rethrow()+0x64) [0x3ffa1a26adc]
9: (CrushWrapper::decode(ceph::buffer::list::iterator&)+0xdc2) [0x2aa0f8b4d92]
10: (OSDMap::decode(ceph::buffer::list::iterator&)+0x5c4) [0x2aa0f739d44]

... it seems that in CrushWrapper::decode() an exception is thrown.

Looking at the (v12.1.2) code in ceph/src/crush/CrushWrapper.cc
(https://github.com/ceph/ceph/blob/v12.1.2/src/crush/CrushWrapper.cc#L2097-L2105)
...

void CrushWrapper::decode(bufferlist::iterator& blp)
{
create();

__u32 magic;
::decode(magic, blp);
if (magic != CRUSH_MAGIC)
throw buffer::malformed_input("bad magic number");

... it looks like the exception is thrown in the MAGIC check.

So perhaps this could be a little/big endian problem when decoding the
magic number?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1713032

Title:
  [luminous] ceph-mon crashes when it is elected leader (s390x)

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1713032/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to