提交 e8f3735f 编写于 作者: X Xiao Guangrong 提交者: Dr. David Alan Gilbert

migration: handle the error condition properly

ram_find_and_save_block() can return negative if any error hanppens,
however, it is completely ignored in current code
Signed-off-by: NXiao Guangrong <xiaoguangrong@tencent.com>
Reviewed-by: NJuan Quintela <quintela@redhat.com>
Message-Id: <20180903092644.25812-5-xiaoguangrong@tencent.com>
Signed-off-by: NJuan Quintela <quintela@redhat.com>
Signed-off-by: NDr. David Alan Gilbert <dgilbert@redhat.com>
上级 be8b02ed
...@@ -2372,7 +2372,8 @@ static int ram_save_host_page(RAMState *rs, PageSearchStatus *pss, ...@@ -2372,7 +2372,8 @@ static int ram_save_host_page(RAMState *rs, PageSearchStatus *pss,
* *
* Called within an RCU critical section. * Called within an RCU critical section.
* *
* Returns the number of pages written where zero means no dirty pages * Returns the number of pages written where zero means no dirty pages,
* or negative on error
* *
* @rs: current RAM state * @rs: current RAM state
* @last_stage: if we are at the completion stage * @last_stage: if we are at the completion stage
...@@ -3196,6 +3197,12 @@ static int ram_save_iterate(QEMUFile *f, void *opaque) ...@@ -3196,6 +3197,12 @@ static int ram_save_iterate(QEMUFile *f, void *opaque)
done = 1; done = 1;
break; break;
} }
if (pages < 0) {
qemu_file_set_error(f, pages);
break;
}
rs->target_page_count += pages; rs->target_page_count += pages;
/* we want to check in the 1st loop, just in case it was the 1st time /* we want to check in the 1st loop, just in case it was the 1st time
...@@ -3238,7 +3245,7 @@ out: ...@@ -3238,7 +3245,7 @@ out:
/** /**
* ram_save_complete: function called to send the remaining amount of ram * ram_save_complete: function called to send the remaining amount of ram
* *
* Returns zero to indicate success * Returns zero to indicate success or negative on error
* *
* Called with iothread lock * Called with iothread lock
* *
...@@ -3249,6 +3256,7 @@ static int ram_save_complete(QEMUFile *f, void *opaque) ...@@ -3249,6 +3256,7 @@ static int ram_save_complete(QEMUFile *f, void *opaque)
{ {
RAMState **temp = opaque; RAMState **temp = opaque;
RAMState *rs = *temp; RAMState *rs = *temp;
int ret = 0;
rcu_read_lock(); rcu_read_lock();
...@@ -3269,6 +3277,10 @@ static int ram_save_complete(QEMUFile *f, void *opaque) ...@@ -3269,6 +3277,10 @@ static int ram_save_complete(QEMUFile *f, void *opaque)
if (pages == 0) { if (pages == 0) {
break; break;
} }
if (pages < 0) {
ret = pages;
break;
}
} }
flush_compressed_data(rs); flush_compressed_data(rs);
...@@ -3280,7 +3292,7 @@ static int ram_save_complete(QEMUFile *f, void *opaque) ...@@ -3280,7 +3292,7 @@ static int ram_save_complete(QEMUFile *f, void *opaque)
qemu_put_be64(f, RAM_SAVE_FLAG_EOS); qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
qemu_fflush(f); qemu_fflush(f);
return 0; return ret;
} }
static void ram_save_pending(QEMUFile *f, void *opaque, uint64_t max_size, static void ram_save_pending(QEMUFile *f, void *opaque, uint64_t max_size,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册