]>
Commit | Line | Data |
---|---|---|
ea2384d3 FB |
1 | /* |
2 | * QEMU System Emulator block driver | |
5fafdf24 | 3 | * |
ea2384d3 | 4 | * Copyright (c) 2003 Fabrice Bellard |
5fafdf24 | 5 | * |
ea2384d3 FB |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
23 | */ | |
24 | #ifndef BLOCK_INT_H | |
25 | #define BLOCK_INT_H | |
26 | ||
faf07963 | 27 | #include "block.h" |
0e7e1989 | 28 | #include "qemu-option.h" |
1b7bdbc1 | 29 | #include "qemu-queue.h" |
da1fa91d | 30 | #include "qemu-coroutine.h" |
c488c7f6 | 31 | #include "qemu-timer.h" |
b2023818 | 32 | #include "qapi-types.h" |
faf07963 | 33 | |
bfe8043e SH |
34 | #define BLOCK_FLAG_ENCRYPT 1 |
35 | #define BLOCK_FLAG_COMPAT6 4 | |
36 | #define BLOCK_FLAG_LAZY_REFCOUNTS 8 | |
ec36ba14 | 37 | |
0563e191 ZYW |
38 | #define BLOCK_IO_LIMIT_READ 0 |
39 | #define BLOCK_IO_LIMIT_WRITE 1 | |
40 | #define BLOCK_IO_LIMIT_TOTAL 2 | |
41 | ||
42 | #define BLOCK_IO_SLICE_TIME 100000000 | |
98f90dba | 43 | #define NANOSECONDS_PER_SECOND 1000000000.0 |
0563e191 | 44 | |
bfe8043e SH |
45 | #define BLOCK_OPT_SIZE "size" |
46 | #define BLOCK_OPT_ENCRYPT "encryption" | |
47 | #define BLOCK_OPT_COMPAT6 "compat6" | |
48 | #define BLOCK_OPT_BACKING_FILE "backing_file" | |
49 | #define BLOCK_OPT_BACKING_FMT "backing_fmt" | |
50 | #define BLOCK_OPT_CLUSTER_SIZE "cluster_size" | |
51 | #define BLOCK_OPT_TABLE_SIZE "table_size" | |
52 | #define BLOCK_OPT_PREALLOC "preallocation" | |
53 | #define BLOCK_OPT_SUBFMT "subformat" | |
54 | #define BLOCK_OPT_COMPAT_LEVEL "compat" | |
55 | #define BLOCK_OPT_LAZY_REFCOUNTS "lazy_refcounts" | |
0e7e1989 | 56 | |
dbffbdcf SH |
57 | typedef struct BdrvTrackedRequest BdrvTrackedRequest; |
58 | ||
0563e191 ZYW |
59 | typedef struct BlockIOLimit { |
60 | int64_t bps[3]; | |
61 | int64_t iops[3]; | |
62 | } BlockIOLimit; | |
63 | ||
64 | typedef struct BlockIOBaseValue { | |
65 | uint64_t bytes[2]; | |
66 | uint64_t ios[2]; | |
67 | } BlockIOBaseValue; | |
68 | ||
eeec61f2 | 69 | typedef struct BlockJob BlockJob; |
dc534f8f PB |
70 | |
71 | /** | |
72 | * BlockJobType: | |
73 | * | |
74 | * A class type for block job objects. | |
75 | */ | |
eeec61f2 SH |
76 | typedef struct BlockJobType { |
77 | /** Derived BlockJob struct size */ | |
78 | size_t instance_size; | |
79 | ||
80 | /** String describing the operation, part of query-block-jobs QMP API */ | |
81 | const char *job_type; | |
82 | ||
83 | /** Optional callback for job types that support setting a speed limit */ | |
882ec7ce | 84 | void (*set_speed)(BlockJob *job, int64_t speed, Error **errp); |
eeec61f2 SH |
85 | } BlockJobType; |
86 | ||
87 | /** | |
dc534f8f PB |
88 | * BlockJob: |
89 | * | |
90 | * Long-running operation on a BlockDriverState. | |
eeec61f2 SH |
91 | */ |
92 | struct BlockJob { | |
dc534f8f | 93 | /** The job type, including the job vtable. */ |
eeec61f2 | 94 | const BlockJobType *job_type; |
dc534f8f PB |
95 | |
96 | /** The block device on which the job is operating. */ | |
eeec61f2 | 97 | BlockDriverState *bs; |
dc534f8f | 98 | |
fa4478d5 PB |
99 | /** |
100 | * The coroutine that executes the job. If not NULL, it is | |
101 | * reentered when busy is false and the job is cancelled. | |
102 | */ | |
103 | Coroutine *co; | |
104 | ||
dc534f8f PB |
105 | /** |
106 | * Set to true if the job should cancel itself. The flag must | |
107 | * always be tested just before toggling the busy flag from false | |
4513eafe PB |
108 | * to true. After a job has been cancelled, it should only yield |
109 | * if #qemu_aio_wait will ("sooner or later") reenter the coroutine. | |
dc534f8f | 110 | */ |
eeec61f2 | 111 | bool cancelled; |
dc534f8f PB |
112 | |
113 | /** | |
114 | * Set to false by the job while it is in a quiescent state, where | |
4513eafe PB |
115 | * no I/O is pending and the job has yielded on any condition |
116 | * that is not detected by #qemu_aio_wait, such as a timer. | |
dc534f8f | 117 | */ |
3e914655 | 118 | bool busy; |
eeec61f2 | 119 | |
dc534f8f | 120 | /** Offset that is published by the query-block-jobs QMP API */ |
eeec61f2 | 121 | int64_t offset; |
dc534f8f PB |
122 | |
123 | /** Length that is published by the query-block-jobs QMP API */ | |
eeec61f2 | 124 | int64_t len; |
dc534f8f PB |
125 | |
126 | /** Speed that was set with @block_job_set_speed. */ | |
eeec61f2 SH |
127 | int64_t speed; |
128 | ||
dc534f8f | 129 | /** The completion function that will be called when the job completes. */ |
eeec61f2 | 130 | BlockDriverCompletionFunc *cb; |
dc534f8f PB |
131 | |
132 | /** The opaque value that is passed to the completion function. */ | |
eeec61f2 SH |
133 | void *opaque; |
134 | }; | |
135 | ||
ea2384d3 FB |
136 | struct BlockDriver { |
137 | const char *format_name; | |
138 | int instance_size; | |
139 | int (*bdrv_probe)(const uint8_t *buf, int buf_size, const char *filename); | |
508c7cb3 | 140 | int (*bdrv_probe_device)(const char *filename); |
66f82cee KW |
141 | int (*bdrv_open)(BlockDriverState *bs, int flags); |
142 | int (*bdrv_file_open)(BlockDriverState *bs, const char *filename, int flags); | |
5fafdf24 | 143 | int (*bdrv_read)(BlockDriverState *bs, int64_t sector_num, |
ea2384d3 | 144 | uint8_t *buf, int nb_sectors); |
5fafdf24 | 145 | int (*bdrv_write)(BlockDriverState *bs, int64_t sector_num, |
ea2384d3 | 146 | const uint8_t *buf, int nb_sectors); |
e2731add | 147 | void (*bdrv_close)(BlockDriverState *bs); |
e023b2e2 | 148 | void (*bdrv_rebind)(BlockDriverState *bs); |
0e7e1989 | 149 | int (*bdrv_create)(const char *filename, QEMUOptionParameter *options); |
ea2384d3 | 150 | int (*bdrv_set_key)(BlockDriverState *bs, const char *key); |
95389c86 | 151 | int (*bdrv_make_empty)(BlockDriverState *bs); |
83f64091 | 152 | /* aio */ |
f141eafe AL |
153 | BlockDriverAIOCB *(*bdrv_aio_readv)(BlockDriverState *bs, |
154 | int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, | |
ce1a14dc | 155 | BlockDriverCompletionFunc *cb, void *opaque); |
f141eafe AL |
156 | BlockDriverAIOCB *(*bdrv_aio_writev)(BlockDriverState *bs, |
157 | int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, | |
ce1a14dc | 158 | BlockDriverCompletionFunc *cb, void *opaque); |
b2e12bc6 CH |
159 | BlockDriverAIOCB *(*bdrv_aio_flush)(BlockDriverState *bs, |
160 | BlockDriverCompletionFunc *cb, void *opaque); | |
4265d620 PB |
161 | BlockDriverAIOCB *(*bdrv_aio_discard)(BlockDriverState *bs, |
162 | int64_t sector_num, int nb_sectors, | |
163 | BlockDriverCompletionFunc *cb, void *opaque); | |
83f64091 | 164 | |
da1fa91d KW |
165 | int coroutine_fn (*bdrv_co_readv)(BlockDriverState *bs, |
166 | int64_t sector_num, int nb_sectors, QEMUIOVector *qiov); | |
167 | int coroutine_fn (*bdrv_co_writev)(BlockDriverState *bs, | |
168 | int64_t sector_num, int nb_sectors, QEMUIOVector *qiov); | |
f08f2dda SH |
169 | /* |
170 | * Efficiently zero a region of the disk image. Typically an image format | |
171 | * would use a compact metadata representation to implement this. This | |
172 | * function pointer may be NULL and .bdrv_co_writev() will be called | |
173 | * instead. | |
174 | */ | |
175 | int coroutine_fn (*bdrv_co_write_zeroes)(BlockDriverState *bs, | |
176 | int64_t sector_num, int nb_sectors); | |
4265d620 PB |
177 | int coroutine_fn (*bdrv_co_discard)(BlockDriverState *bs, |
178 | int64_t sector_num, int nb_sectors); | |
376ae3f1 SH |
179 | int coroutine_fn (*bdrv_co_is_allocated)(BlockDriverState *bs, |
180 | int64_t sector_num, int nb_sectors, int *pnum); | |
da1fa91d | 181 | |
0f15423c AL |
182 | /* |
183 | * Invalidate any cached meta-data. | |
184 | */ | |
185 | void (*bdrv_invalidate_cache)(BlockDriverState *bs); | |
186 | ||
c68b89ac KW |
187 | /* |
188 | * Flushes all data that was already written to the OS all the way down to | |
189 | * the disk (for example raw-posix calls fsync()). | |
190 | */ | |
191 | int coroutine_fn (*bdrv_co_flush_to_disk)(BlockDriverState *bs); | |
192 | ||
eb489bb1 KW |
193 | /* |
194 | * Flushes all internal caches to the OS. The data may still sit in a | |
195 | * writeback cache of the host OS, but it will survive a crash of the qemu | |
196 | * process. | |
197 | */ | |
198 | int coroutine_fn (*bdrv_co_flush_to_os)(BlockDriverState *bs); | |
199 | ||
83f64091 | 200 | const char *protocol_name; |
83f64091 FB |
201 | int (*bdrv_truncate)(BlockDriverState *bs, int64_t offset); |
202 | int64_t (*bdrv_getlength)(BlockDriverState *bs); | |
4a1d5e1f | 203 | int64_t (*bdrv_get_allocated_file_size)(BlockDriverState *bs); |
5fafdf24 | 204 | int (*bdrv_write_compressed)(BlockDriverState *bs, int64_t sector_num, |
faea38e7 FB |
205 | const uint8_t *buf, int nb_sectors); |
206 | ||
5fafdf24 | 207 | int (*bdrv_snapshot_create)(BlockDriverState *bs, |
faea38e7 | 208 | QEMUSnapshotInfo *sn_info); |
5fafdf24 | 209 | int (*bdrv_snapshot_goto)(BlockDriverState *bs, |
faea38e7 FB |
210 | const char *snapshot_id); |
211 | int (*bdrv_snapshot_delete)(BlockDriverState *bs, const char *snapshot_id); | |
5fafdf24 | 212 | int (*bdrv_snapshot_list)(BlockDriverState *bs, |
faea38e7 | 213 | QEMUSnapshotInfo **psn_info); |
51ef6727 | 214 | int (*bdrv_snapshot_load_tmp)(BlockDriverState *bs, |
215 | const char *snapshot_name); | |
faea38e7 | 216 | int (*bdrv_get_info)(BlockDriverState *bs, BlockDriverInfo *bdi); |
83f64091 | 217 | |
45566e9c CH |
218 | int (*bdrv_save_vmstate)(BlockDriverState *bs, const uint8_t *buf, |
219 | int64_t pos, int size); | |
220 | int (*bdrv_load_vmstate)(BlockDriverState *bs, uint8_t *buf, | |
221 | int64_t pos, int size); | |
178e08a5 | 222 | |
756e6736 KW |
223 | int (*bdrv_change_backing_file)(BlockDriverState *bs, |
224 | const char *backing_file, const char *backing_fmt); | |
225 | ||
19cb3738 FB |
226 | /* removable device specific */ |
227 | int (*bdrv_is_inserted)(BlockDriverState *bs); | |
228 | int (*bdrv_media_changed)(BlockDriverState *bs); | |
f36f3949 | 229 | void (*bdrv_eject)(BlockDriverState *bs, bool eject_flag); |
025e849a | 230 | void (*bdrv_lock_medium)(BlockDriverState *bs, bool locked); |
3b46e624 | 231 | |
985a03b0 TS |
232 | /* to control generic scsi devices */ |
233 | int (*bdrv_ioctl)(BlockDriverState *bs, unsigned long int req, void *buf); | |
221f715d AL |
234 | BlockDriverAIOCB *(*bdrv_aio_ioctl)(BlockDriverState *bs, |
235 | unsigned long int req, void *buf, | |
236 | BlockDriverCompletionFunc *cb, void *opaque); | |
985a03b0 | 237 | |
0e7e1989 KW |
238 | /* List of options for creating images, terminated by name == NULL */ |
239 | QEMUOptionParameter *create_options; | |
240 | ||
5eb45639 | 241 | |
9ac228e0 KW |
242 | /* |
243 | * Returns 0 for completed check, -errno for internal errors. | |
244 | * The check results are stored in result. | |
245 | */ | |
4534ff54 KW |
246 | int (*bdrv_check)(BlockDriverState* bs, BdrvCheckResult *result, |
247 | BdrvCheckMode fix); | |
e97fc193 | 248 | |
8b9b0cc2 KW |
249 | void (*bdrv_debug_event)(BlockDriverState *bs, BlkDebugEvent event); |
250 | ||
336c1c12 KW |
251 | /* |
252 | * Returns 1 if newly created images are guaranteed to contain only | |
253 | * zeros, 0 otherwise. | |
254 | */ | |
255 | int (*bdrv_has_zero_init)(BlockDriverState *bs); | |
12c09b8c | 256 | |
8a22f02a | 257 | QLIST_ENTRY(BlockDriver) list; |
ea2384d3 FB |
258 | }; |
259 | ||
8802d1fd JC |
260 | /* |
261 | * Note: the function bdrv_append() copies and swaps contents of | |
262 | * BlockDriverStates, so if you add new fields to this struct, please | |
263 | * inspect bdrv_append() to determine if the new fields need to be | |
264 | * copied as well. | |
265 | */ | |
ea2384d3 | 266 | struct BlockDriverState { |
d15a771d FB |
267 | int64_t total_sectors; /* if we are reading a disk image, give its |
268 | size in sectors */ | |
ea2384d3 | 269 | int read_only; /* if true, the media is read only */ |
4dca4b63 NS |
270 | int keep_read_only; /* if true, the media was requested to stay read only */ |
271 | int open_flags; /* flags used to open the file, re-used for re-open */ | |
ea2384d3 | 272 | int encrypted; /* if true, the media is encrypted */ |
c0f4ce77 | 273 | int valid_key; /* if true, a valid encryption key has been set */ |
985a03b0 | 274 | int sg; /* if true, the device is a /dev/sg* */ |
53fec9d3 SH |
275 | int copy_on_read; /* if true, copy read backing sectors into image |
276 | note this is a reference count */ | |
ea2384d3 | 277 | |
19cb3738 | 278 | BlockDriver *drv; /* NULL means no media */ |
ea2384d3 FB |
279 | void *opaque; |
280 | ||
fa879d62 MA |
281 | void *dev; /* attached device model, if any */ |
282 | /* TODO change to DeviceState when all users are qdevified */ | |
0e49de52 MA |
283 | const BlockDevOps *dev_ops; |
284 | void *dev_opaque; | |
18846dee | 285 | |
ea2384d3 FB |
286 | char filename[1024]; |
287 | char backing_file[1024]; /* if non zero, the image is a diff of | |
288 | this file image */ | |
5eb45639 | 289 | char backing_format[16]; /* if non-zero and backing_file exists */ |
ea2384d3 | 290 | int is_temporary; |
19cb3738 | 291 | |
ea2384d3 | 292 | BlockDriverState *backing_hd; |
66f82cee KW |
293 | BlockDriverState *file; |
294 | ||
470c0504 SH |
295 | /* number of in-flight copy-on-read requests */ |
296 | unsigned int copy_on_read_in_flight; | |
297 | ||
0563e191 ZYW |
298 | /* the time for latest disk I/O */ |
299 | int64_t slice_time; | |
300 | int64_t slice_start; | |
301 | int64_t slice_end; | |
302 | BlockIOLimit io_limits; | |
303 | BlockIOBaseValue io_base; | |
304 | CoQueue throttled_reqs; | |
305 | QEMUTimer *block_timer; | |
306 | bool io_limits_enabled; | |
307 | ||
a36e69dd | 308 | /* I/O stats (display with "info blockstats"). */ |
a597e79c CH |
309 | uint64_t nr_bytes[BDRV_MAX_IOTYPE]; |
310 | uint64_t nr_ops[BDRV_MAX_IOTYPE]; | |
c488c7f6 | 311 | uint64_t total_time_ns[BDRV_MAX_IOTYPE]; |
294cc35f | 312 | uint64_t wr_highest_sector; |
a36e69dd | 313 | |
71d0770c AL |
314 | /* Whether the disk can expand beyond total_sectors */ |
315 | int growable; | |
316 | ||
e268ca52 AL |
317 | /* the memory alignment required for the buffers handled by this driver */ |
318 | int buffer_alignment; | |
319 | ||
e900a7b7 CH |
320 | /* do we need to tell the quest if we have a volatile write cache? */ |
321 | int enable_write_cache; | |
322 | ||
ea2384d3 FB |
323 | /* NOTE: the following infos are only hints for real hardware |
324 | drivers. They are not used by the block driver */ | |
abd7f68d | 325 | BlockErrorAction on_read_error, on_write_error; |
d6bf279e | 326 | bool iostatus_enabled; |
b2023818 | 327 | BlockDeviceIoStatus iostatus; |
ea2384d3 | 328 | char device_name[32]; |
c6d22830 | 329 | unsigned long *dirty_bitmap; |
aaa0eb75 | 330 | int64_t dirty_count; |
db593f25 | 331 | int in_use; /* users other than guest access, eg. block migration */ |
1b7bdbc1 | 332 | QTAILQ_ENTRY(BlockDriverState) list; |
dbffbdcf SH |
333 | |
334 | QLIST_HEAD(, BdrvTrackedRequest) tracked_requests; | |
eeec61f2 SH |
335 | |
336 | /* long-running background operation */ | |
337 | BlockJob *job; | |
ea2384d3 FB |
338 | }; |
339 | ||
eba25057 | 340 | int get_tmp_filename(char *filename, int size); |
95389c86 | 341 | |
0563e191 ZYW |
342 | void bdrv_set_io_limits(BlockDriverState *bs, |
343 | BlockIOLimit *io_limits); | |
344 | ||
508c7cb3 CH |
345 | #ifdef _WIN32 |
346 | int is_windows_drive(const char *filename); | |
347 | #endif | |
348 | ||
dc534f8f PB |
349 | /** |
350 | * block_job_create: | |
351 | * @job_type: The class object for the newly-created job. | |
352 | * @bs: The block | |
c83c66c3 | 353 | * @speed: The maximum speed, in bytes per second, or 0 for unlimited. |
dc534f8f PB |
354 | * @cb: Completion function for the job. |
355 | * @opaque: Opaque pointer value passed to @cb. | |
fd7f8c65 | 356 | * @errp: Error object. |
dc534f8f PB |
357 | * |
358 | * Create a new long-running block device job and return it. The job | |
359 | * will call @cb asynchronously when the job completes. Note that | |
360 | * @bs may have been closed at the time the @cb it is called. If | |
361 | * this is the case, the job may be reported as either cancelled or | |
362 | * completed. | |
363 | * | |
364 | * This function is not part of the public job interface; it should be | |
365 | * called from a wrapper that is specific to the job type. | |
366 | */ | |
eeec61f2 | 367 | void *block_job_create(const BlockJobType *job_type, BlockDriverState *bs, |
c83c66c3 SH |
368 | int64_t speed, BlockDriverCompletionFunc *cb, |
369 | void *opaque, Error **errp); | |
dc534f8f | 370 | |
4513eafe PB |
371 | /** |
372 | * block_job_sleep_ns: | |
373 | * @job: The job that calls the function. | |
374 | * @clock: The clock to sleep on. | |
375 | * @ns: How many nanoseconds to stop for. | |
376 | * | |
377 | * Put the job to sleep (assuming that it wasn't canceled) for @ns | |
378 | * nanoseconds. Canceling the job will interrupt the wait immediately. | |
379 | */ | |
380 | void block_job_sleep_ns(BlockJob *job, QEMUClock *clock, int64_t ns); | |
381 | ||
dc534f8f PB |
382 | /** |
383 | * block_job_complete: | |
384 | * @job: The job being completed. | |
385 | * @ret: The status code. | |
386 | * | |
387 | * Call the completion function that was registered at creation time, and | |
388 | * free @job. | |
389 | */ | |
eeec61f2 | 390 | void block_job_complete(BlockJob *job, int ret); |
dc534f8f PB |
391 | |
392 | /** | |
393 | * block_job_set_speed: | |
394 | * @job: The job to set the speed for. | |
395 | * @speed: The new value | |
9e6636c7 | 396 | * @errp: Error object. |
dc534f8f PB |
397 | * |
398 | * Set a rate-limiting parameter for the job; the actual meaning may | |
399 | * vary depending on the job type. | |
400 | */ | |
882ec7ce | 401 | void block_job_set_speed(BlockJob *job, int64_t speed, Error **errp); |
dc534f8f PB |
402 | |
403 | /** | |
404 | * block_job_cancel: | |
405 | * @job: The job to be canceled. | |
406 | * | |
407 | * Asynchronously cancel the specified job. | |
408 | */ | |
eeec61f2 | 409 | void block_job_cancel(BlockJob *job); |
dc534f8f PB |
410 | |
411 | /** | |
412 | * block_job_is_cancelled: | |
413 | * @job: The job being queried. | |
414 | * | |
415 | * Returns whether the job is scheduled for cancellation. | |
416 | */ | |
eeec61f2 | 417 | bool block_job_is_cancelled(BlockJob *job); |
dc534f8f PB |
418 | |
419 | /** | |
420 | * block_job_cancel: | |
421 | * @job: The job to be canceled. | |
422 | * | |
423 | * Asynchronously cancel the job and wait for it to reach a quiescent | |
424 | * state. Note that the completion callback will still be called | |
425 | * asynchronously, hence it is *not* valid to call #bdrv_delete | |
426 | * immediately after #block_job_cancel_sync. Users of block jobs | |
427 | * will usually protect the BlockDriverState objects with a reference | |
428 | * count, should this be a concern. | |
fa4478d5 PB |
429 | * |
430 | * Returns the return value from the job if the job actually completed | |
431 | * during the call, or -ECANCELED if it was canceled. | |
dc534f8f | 432 | */ |
fa4478d5 | 433 | int block_job_cancel_sync(BlockJob *job); |
eeec61f2 | 434 | |
dc534f8f PB |
435 | /** |
436 | * stream_start: | |
437 | * @bs: Block device to operate on. | |
438 | * @base: Block device that will become the new base, or %NULL to | |
439 | * flatten the whole backing file chain onto @bs. | |
440 | * @base_id: The file name that will be written to @bs as the new | |
441 | * backing file if the job completes. Ignored if @base is %NULL. | |
c83c66c3 | 442 | * @speed: The maximum speed, in bytes per second, or 0 for unlimited. |
dc534f8f PB |
443 | * @cb: Completion function for the job. |
444 | * @opaque: Opaque pointer value passed to @cb. | |
fd7f8c65 | 445 | * @errp: Error object. |
dc534f8f PB |
446 | * |
447 | * Start a streaming operation on @bs. Clusters that are unallocated | |
448 | * in @bs, but allocated in any image between @base and @bs (both | |
449 | * exclusive) will be written to @bs. At the end of a successful | |
450 | * streaming job, the backing file of @bs will be changed to | |
451 | * @base_id in the written image and to @base in the live BlockDriverState. | |
452 | */ | |
fd7f8c65 | 453 | void stream_start(BlockDriverState *bs, BlockDriverState *base, |
c83c66c3 SH |
454 | const char *base_id, int64_t speed, |
455 | BlockDriverCompletionFunc *cb, | |
fd7f8c65 | 456 | void *opaque, Error **errp); |
4f1043b4 | 457 | |
ea2384d3 | 458 | #endif /* BLOCK_INT_H */ |