diff options
| author | Fabiano Rosas <farosas@suse.de> | 2024-02-29 12:30:00 -0300 |
|---|---|---|
| committer | Peter Xu <peterx@redhat.com> | 2024-03-01 15:42:04 +0800 |
| commit | 7f5b50a40181bd75c1f74aeaa7fe94fe10680720 (patch) | |
| tree | 2c786f532a3c0a63c668465795dce28fa331c5cb /include/migration/qemu-file-types.h | |
| parent | c05dfcb7f2c5e39fc47c347de305df4e6afb4fa9 (diff) | |
| download | focaccia-qemu-7f5b50a40181bd75c1f74aeaa7fe94fe10680720.tar.gz focaccia-qemu-7f5b50a40181bd75c1f74aeaa7fe94fe10680720.zip | |
migration/qemu-file: add utility methods for working with seekable channels
Add utility methods that will be needed when implementing 'mapped-ram' migration capability. Signed-off-by: Fabiano Rosas <farosas@suse.de> Reviewed-by: "Daniel P. Berrangé" <berrange@redhat.com> Link: https://lore.kernel.org/r/20240229153017.2221-7-farosas@suse.de Signed-off-by: Peter Xu <peterx@redhat.com>
Diffstat (limited to 'include/migration/qemu-file-types.h')
| -rw-r--r-- | include/migration/qemu-file-types.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/migration/qemu-file-types.h b/include/migration/qemu-file-types.h index 9ba163f333..adec5abc07 100644 --- a/include/migration/qemu-file-types.h +++ b/include/migration/qemu-file-types.h @@ -50,6 +50,8 @@ unsigned int qemu_get_be16(QEMUFile *f); unsigned int qemu_get_be32(QEMUFile *f); uint64_t qemu_get_be64(QEMUFile *f); +bool qemu_file_is_seekable(QEMUFile *f); + static inline void qemu_put_be64s(QEMUFile *f, const uint64_t *pv) { qemu_put_be64(f, *pv); |