ram.c: Do not call save_page_header() from compress threads
authorLukas Straub <lukasstraub2@web.de>
Thu, 20 Apr 2023 09:48:06 +0000 (11:48 +0200)
committerJuan Quintela <quintela@redhat.com>
Mon, 8 May 2023 13:25:26 +0000 (15:25 +0200)
commit3e81763e4c2e9f1b4bc331605a6450b6845d8970
tree7f8ec37e1f711068364f3bddf43ce33bae6bdd77
parentb5cf1cd3e81eebb6343404fe8029d61dfb817d5a
ram.c: Do not call save_page_header() from compress threads

save_page_header() accesses several global variables, so calling it
from multiple threads is pretty ugly.

Instead, call save_page_header() before writing out the compressed
data from the compress buffer to the migration stream.

This also makes the core compress code more independend from ram.c.

Signed-off-by: Lukas Straub <lukasstraub2@web.de>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
migration/ram.c