mirror of https://github.com/xemu-project/xemu.git
migration: replace assert(0) with g_assert_not_reached()
This patch is part of a series that moves towards a consistent use of g_assert_not_reached() rather than an ad hoc mix of different assertion mechanisms. Reviewed-by: Fabiano Rosas <farosas@suse.de> Reviewed-by: Peter Xu <peterx@redhat.com> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-ID: <20240919044641.386068-5-pierrick.bouvier@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
b5df251408
commit
0c79effdc7
|
@ -640,7 +640,7 @@ void hmp_migrate_set_parameter(Monitor *mon, const QDict *qdict)
|
||||||
visit_type_bool(v, param, &p->direct_io, &err);
|
visit_type_bool(v, param, &p->direct_io, &err);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
assert(0);
|
g_assert_not_reached();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (err) {
|
if (err) {
|
||||||
|
|
|
@ -1411,40 +1411,40 @@ int postcopy_ram_incoming_init(MigrationIncomingState *mis)
|
||||||
|
|
||||||
int postcopy_ram_incoming_cleanup(MigrationIncomingState *mis)
|
int postcopy_ram_incoming_cleanup(MigrationIncomingState *mis)
|
||||||
{
|
{
|
||||||
assert(0);
|
g_assert_not_reached();
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int postcopy_ram_prepare_discard(MigrationIncomingState *mis)
|
int postcopy_ram_prepare_discard(MigrationIncomingState *mis)
|
||||||
{
|
{
|
||||||
assert(0);
|
g_assert_not_reached();
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int postcopy_request_shared_page(struct PostCopyFD *pcfd, RAMBlock *rb,
|
int postcopy_request_shared_page(struct PostCopyFD *pcfd, RAMBlock *rb,
|
||||||
uint64_t client_addr, uint64_t rb_offset)
|
uint64_t client_addr, uint64_t rb_offset)
|
||||||
{
|
{
|
||||||
assert(0);
|
g_assert_not_reached();
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int postcopy_ram_incoming_setup(MigrationIncomingState *mis)
|
int postcopy_ram_incoming_setup(MigrationIncomingState *mis)
|
||||||
{
|
{
|
||||||
assert(0);
|
g_assert_not_reached();
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int postcopy_place_page(MigrationIncomingState *mis, void *host, void *from,
|
int postcopy_place_page(MigrationIncomingState *mis, void *host, void *from,
|
||||||
RAMBlock *rb)
|
RAMBlock *rb)
|
||||||
{
|
{
|
||||||
assert(0);
|
g_assert_not_reached();
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int postcopy_place_page_zero(MigrationIncomingState *mis, void *host,
|
int postcopy_place_page_zero(MigrationIncomingState *mis, void *host,
|
||||||
RAMBlock *rb)
|
RAMBlock *rb)
|
||||||
{
|
{
|
||||||
assert(0);
|
g_assert_not_reached();
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1452,7 +1452,7 @@ int postcopy_wake_shared(struct PostCopyFD *pcfd,
|
||||||
uint64_t client_addr,
|
uint64_t client_addr,
|
||||||
RAMBlock *rb)
|
RAMBlock *rb)
|
||||||
{
|
{
|
||||||
assert(0);
|
g_assert_not_reached();
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1765,19 +1765,19 @@ bool ram_write_tracking_available(void)
|
||||||
|
|
||||||
bool ram_write_tracking_compatible(void)
|
bool ram_write_tracking_compatible(void)
|
||||||
{
|
{
|
||||||
assert(0);
|
g_assert_not_reached();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
int ram_write_tracking_start(void)
|
int ram_write_tracking_start(void)
|
||||||
{
|
{
|
||||||
assert(0);
|
g_assert_not_reached();
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ram_write_tracking_stop(void)
|
void ram_write_tracking_stop(void)
|
||||||
{
|
{
|
||||||
assert(0);
|
g_assert_not_reached();
|
||||||
}
|
}
|
||||||
#endif /* defined(__linux__) */
|
#endif /* defined(__linux__) */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue