Description of problem: We use a variable of type int to store a uint32_t variable. This variable is send through the wire and between kernel/userland. Analysis: - kernel declares int mp_state; - kernel transfers to/from userspace over ioctl _u32 mp_state. - qemu stores internall int mp_state. - qemu saves/load during migration uint32_t mp_state. qemu don't use that variable at all, just save it for migration. Changing it to uint32_t will make everything working Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info:
Created attachment 354760 [details] change mp_state type to uint32_t
*** This bug has been marked as a duplicate of bug 515749 ***