2 * Multifd common functions
4 * Copyright (c) 2019-2020 Red Hat Inc
7 * Juan Quintela <quintela@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #ifndef QEMU_MIGRATION_MULTIFD_H
14 #define QEMU_MIGRATION_MULTIFD_H
16 int multifd_save_setup(Error
**errp
);
17 void multifd_save_cleanup(void);
18 int multifd_load_setup(Error
**errp
);
19 int multifd_load_cleanup(Error
**errp
);
20 bool multifd_recv_all_channels_created(void);
21 bool multifd_recv_new_channel(QIOChannel
*ioc
, Error
**errp
);
22 void multifd_recv_sync_main(void);
23 int multifd_send_sync_main(QEMUFile
*f
);
24 int multifd_queue_page(QEMUFile
*f
, RAMBlock
*block
, ram_addr_t offset
);
26 /* Multifd Compression flags */
27 #define MULTIFD_FLAG_SYNC (1 << 0)
29 /* We reserve 3 bits for compression methods */
30 #define MULTIFD_FLAG_COMPRESSION_MASK (7 << 1)
31 /* we need to be compatible. Before compression value was 0 */
32 #define MULTIFD_FLAG_NOCOMP (0 << 1)
33 #define MULTIFD_FLAG_ZLIB (1 << 1)
34 #define MULTIFD_FLAG_ZSTD (2 << 1)
36 /* This value needs to be a multiple of qemu_target_page_size() */
37 #define MULTIFD_PACKET_SIZE (512 * 1024)
43 /* maximum number of allocated pages */
46 uint32_t normal_pages
;
47 /* size of the next packet that contains pages */
48 uint32_t next_packet_size
;
50 uint64_t unused
[4]; /* Reserved for future use */
53 } __attribute__((packed
)) MultiFDPacket_t
;
56 /* number of used pages */
58 /* number of allocated pages */
60 /* global number of generated multifd packets */
62 /* offset of each page */
68 /* Fields are only written at creating/deletion time */
69 /* No lock required for them, they are read only */
73 /* channel thread name */
75 /* channel thread id */
77 /* communication channel */
79 /* is the yank function registered */
81 /* packet allocated len */
85 /* number of pages in a full packet */
87 /* multifd flags for sending ram */
90 /* sem where to wait for more work */
92 /* syncs main thread and channels */
93 QemuSemaphore sem_sync
;
95 /* this mutex protects the following parameters */
97 /* is this channel thread running */
99 /* should this thread finish */
101 /* multifd flags for each packet */
103 /* global number of generated multifd packets */
105 /* thread has work to do */
107 /* array of pages to sent.
108 * The owner of 'pages' depends of 'pending_job' value:
109 * pending_job == 0 -> migration_thread can use it.
110 * pending_job != 0 -> multifd_channel can use it.
112 MultiFDPages_t
*pages
;
114 /* thread local variables. No locking required */
116 /* pointer to the packet */
117 MultiFDPacket_t
*packet
;
118 /* size of the next packet that contains pages */
119 uint32_t next_packet_size
;
120 /* packets sent through this channel */
121 uint64_t num_packets
;
122 /* non zero pages sent through this channel */
123 uint64_t total_normal_pages
;
124 /* buffers to send */
126 /* number of iovs used */
128 /* Pages that are not zero */
130 /* num of non zero pages */
132 /* used for compression methods */
137 /* Fields are only written at creating/deletion time */
138 /* No lock required for them, they are read only */
142 /* channel thread name */
144 /* channel thread id */
146 /* communication channel */
148 /* packet allocated len */
150 /* guest page size */
152 /* number of pages in a full packet */
155 /* syncs main thread and channels */
156 QemuSemaphore sem_sync
;
158 /* this mutex protects the following parameters */
160 /* is this channel thread running */
162 /* should this thread finish */
164 /* multifd flags for each packet */
166 /* global number of generated multifd packets */
169 /* thread local variables. No locking required */
171 /* pointer to the packet */
172 MultiFDPacket_t
*packet
;
173 /* size of the next packet that contains pages */
174 uint32_t next_packet_size
;
175 /* packets sent through this channel */
176 uint64_t num_packets
;
177 /* ramblock host address */
179 /* non zero pages recv through this channel */
180 uint64_t total_normal_pages
;
181 /* buffers to recv */
183 /* Pages that are not zero */
185 /* num of non zero pages */
187 /* used for de-compression methods */
192 /* Setup for sending side */
193 int (*send_setup
)(MultiFDSendParams
*p
, Error
**errp
);
194 /* Cleanup for sending side */
195 void (*send_cleanup
)(MultiFDSendParams
*p
, Error
**errp
);
196 /* Prepare the send packet */
197 int (*send_prepare
)(MultiFDSendParams
*p
, Error
**errp
);
198 /* Setup for receiving side */
199 int (*recv_setup
)(MultiFDRecvParams
*p
, Error
**errp
);
200 /* Cleanup for receiving side */
201 void (*recv_cleanup
)(MultiFDRecvParams
*p
);
203 int (*recv_pages
)(MultiFDRecvParams
*p
, Error
**errp
);
206 void multifd_register_ops(int method
, MultiFDMethods
*ops
);