diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2024-05-03 10:57:41 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-05-03 15:47:48 +0200 |
commit | 9608723abb11b2cf81cdaa33e13cc888c1d9fe85 (patch) | |
tree | 24e375dfe24536ab60d5f943324f9352497cb82b /migration | |
parent | 48663349813144224d2b1cb6a85a893c2aa901ad (diff) |
migration: do not include coroutine_int.h
Migration code needs no private fields of the coroutine backend.
Include the "regular" coroutine.h header.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'migration')
-rw-r--r-- | migration/migration.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/migration.h b/migration/migration.h index 8045e39c26..6c612c0381 100644 --- a/migration/migration.h +++ b/migration/migration.h @@ -19,7 +19,7 @@ #include "qapi/qapi-types-migration.h" #include "qapi/qmp/json-writer.h" #include "qemu/thread.h" -#include "qemu/coroutine_int.h" +#include "qemu/coroutine.h" #include "io/channel.h" #include "io/channel-buffer.h" #include "net/announce.h" |