2 * Block protocol for I/O error injection
4 * Copyright (c) 2010 Kevin Wolf <kwolf@redhat.com>
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
25 #include "qemu-common.h"
26 #include "qemu/config-file.h"
27 #include "block/block_int.h"
28 #include "qemu/module.h"
29 #include "qapi/qmp/qbool.h"
30 #include "qapi/qmp/qdict.h"
31 #include "qapi/qmp/qint.h"
32 #include "qapi/qmp/qstring.h"
33 #include "sysemu/qtest.h"
35 typedef struct BDRVBlkdebugState
{
39 QLIST_HEAD(, BlkdebugRule
) rules
[BLKDBG_EVENT_MAX
];
40 QSIMPLEQ_HEAD(, BlkdebugRule
) active_rules
;
41 QLIST_HEAD(, BlkdebugSuspendedReq
) suspended_reqs
;
44 typedef struct BlkdebugAIOCB
{
50 typedef struct BlkdebugSuspendedReq
{
53 QLIST_ENTRY(BlkdebugSuspendedReq
) next
;
54 } BlkdebugSuspendedReq
;
56 static const AIOCBInfo blkdebug_aiocb_info
= {
57 .aiocb_size
= sizeof(BlkdebugAIOCB
),
66 typedef struct BlkdebugRule
{
84 QLIST_ENTRY(BlkdebugRule
) next
;
85 QSIMPLEQ_ENTRY(BlkdebugRule
) active_next
;
88 static QemuOptsList inject_error_opts
= {
89 .name
= "inject-error",
90 .head
= QTAILQ_HEAD_INITIALIZER(inject_error_opts
.head
),
94 .type
= QEMU_OPT_STRING
,
98 .type
= QEMU_OPT_NUMBER
,
102 .type
= QEMU_OPT_NUMBER
,
106 .type
= QEMU_OPT_NUMBER
,
110 .type
= QEMU_OPT_BOOL
,
113 .name
= "immediately",
114 .type
= QEMU_OPT_BOOL
,
116 { /* end of list */ }
120 static QemuOptsList set_state_opts
= {
122 .head
= QTAILQ_HEAD_INITIALIZER(set_state_opts
.head
),
126 .type
= QEMU_OPT_STRING
,
130 .type
= QEMU_OPT_NUMBER
,
134 .type
= QEMU_OPT_NUMBER
,
136 { /* end of list */ }
140 static QemuOptsList
*config_groups
[] = {
146 static const char *event_names
[BLKDBG_EVENT_MAX
] = {
147 [BLKDBG_L1_UPDATE
] = "l1_update",
148 [BLKDBG_L1_GROW_ALLOC_TABLE
] = "l1_grow.alloc_table",
149 [BLKDBG_L1_GROW_WRITE_TABLE
] = "l1_grow.write_table",
150 [BLKDBG_L1_GROW_ACTIVATE_TABLE
] = "l1_grow.activate_table",
152 [BLKDBG_L2_LOAD
] = "l2_load",
153 [BLKDBG_L2_UPDATE
] = "l2_update",
154 [BLKDBG_L2_UPDATE_COMPRESSED
] = "l2_update_compressed",
155 [BLKDBG_L2_ALLOC_COW_READ
] = "l2_alloc.cow_read",
156 [BLKDBG_L2_ALLOC_WRITE
] = "l2_alloc.write",
158 [BLKDBG_READ_AIO
] = "read_aio",
159 [BLKDBG_READ_BACKING_AIO
] = "read_backing_aio",
160 [BLKDBG_READ_COMPRESSED
] = "read_compressed",
162 [BLKDBG_WRITE_AIO
] = "write_aio",
163 [BLKDBG_WRITE_COMPRESSED
] = "write_compressed",
165 [BLKDBG_VMSTATE_LOAD
] = "vmstate_load",
166 [BLKDBG_VMSTATE_SAVE
] = "vmstate_save",
168 [BLKDBG_COW_READ
] = "cow_read",
169 [BLKDBG_COW_WRITE
] = "cow_write",
171 [BLKDBG_REFTABLE_LOAD
] = "reftable_load",
172 [BLKDBG_REFTABLE_GROW
] = "reftable_grow",
173 [BLKDBG_REFTABLE_UPDATE
] = "reftable_update",
175 [BLKDBG_REFBLOCK_LOAD
] = "refblock_load",
176 [BLKDBG_REFBLOCK_UPDATE
] = "refblock_update",
177 [BLKDBG_REFBLOCK_UPDATE_PART
] = "refblock_update_part",
178 [BLKDBG_REFBLOCK_ALLOC
] = "refblock_alloc",
179 [BLKDBG_REFBLOCK_ALLOC_HOOKUP
] = "refblock_alloc.hookup",
180 [BLKDBG_REFBLOCK_ALLOC_WRITE
] = "refblock_alloc.write",
181 [BLKDBG_REFBLOCK_ALLOC_WRITE_BLOCKS
] = "refblock_alloc.write_blocks",
182 [BLKDBG_REFBLOCK_ALLOC_WRITE_TABLE
] = "refblock_alloc.write_table",
183 [BLKDBG_REFBLOCK_ALLOC_SWITCH_TABLE
] = "refblock_alloc.switch_table",
185 [BLKDBG_CLUSTER_ALLOC
] = "cluster_alloc",
186 [BLKDBG_CLUSTER_ALLOC_BYTES
] = "cluster_alloc_bytes",
187 [BLKDBG_CLUSTER_FREE
] = "cluster_free",
189 [BLKDBG_FLUSH_TO_OS
] = "flush_to_os",
190 [BLKDBG_FLUSH_TO_DISK
] = "flush_to_disk",
192 [BLKDBG_PWRITEV_RMW_HEAD
] = "pwritev_rmw.head",
193 [BLKDBG_PWRITEV_RMW_AFTER_HEAD
] = "pwritev_rmw.after_head",
194 [BLKDBG_PWRITEV_RMW_TAIL
] = "pwritev_rmw.tail",
195 [BLKDBG_PWRITEV_RMW_AFTER_TAIL
] = "pwritev_rmw.after_tail",
196 [BLKDBG_PWRITEV
] = "pwritev",
197 [BLKDBG_PWRITEV_ZERO
] = "pwritev_zero",
198 [BLKDBG_PWRITEV_DONE
] = "pwritev_done",
200 [BLKDBG_EMPTY_IMAGE_PREPARE
] = "empty_image_prepare",
203 static int get_event_by_name(const char *name
, BlkDebugEvent
*event
)
207 for (i
= 0; i
< BLKDBG_EVENT_MAX
; i
++) {
208 if (!strcmp(event_names
[i
], name
)) {
217 struct add_rule_data
{
218 BDRVBlkdebugState
*s
;
222 static int add_rule(void *opaque
, QemuOpts
*opts
, Error
**errp
)
224 struct add_rule_data
*d
= opaque
;
225 BDRVBlkdebugState
*s
= d
->s
;
226 const char* event_name
;
228 struct BlkdebugRule
*rule
;
230 /* Find the right event for the rule */
231 event_name
= qemu_opt_get(opts
, "event");
233 error_setg(errp
, "Missing event name for rule");
235 } else if (get_event_by_name(event_name
, &event
) < 0) {
236 error_setg(errp
, "Invalid event name \"%s\"", event_name
);
240 /* Set attributes common for all actions */
241 rule
= g_malloc0(sizeof(*rule
));
242 *rule
= (struct BlkdebugRule
) {
245 .state
= qemu_opt_get_number(opts
, "state", 0),
248 /* Parse action-specific options */
250 case ACTION_INJECT_ERROR
:
251 rule
->options
.inject
.error
= qemu_opt_get_number(opts
, "errno", EIO
);
252 rule
->options
.inject
.once
= qemu_opt_get_bool(opts
, "once", 0);
253 rule
->options
.inject
.immediately
=
254 qemu_opt_get_bool(opts
, "immediately", 0);
255 rule
->options
.inject
.sector
= qemu_opt_get_number(opts
, "sector", -1);
258 case ACTION_SET_STATE
:
259 rule
->options
.set_state
.new_state
=
260 qemu_opt_get_number(opts
, "new_state", 0);
264 rule
->options
.suspend
.tag
=
265 g_strdup(qemu_opt_get(opts
, "tag"));
270 QLIST_INSERT_HEAD(&s
->rules
[event
], rule
, next
);
275 static void remove_rule(BlkdebugRule
*rule
)
277 switch (rule
->action
) {
278 case ACTION_INJECT_ERROR
:
279 case ACTION_SET_STATE
:
282 g_free(rule
->options
.suspend
.tag
);
286 QLIST_REMOVE(rule
, next
);
290 static int read_config(BDRVBlkdebugState
*s
, const char *filename
,
291 QDict
*options
, Error
**errp
)
295 struct add_rule_data d
;
296 Error
*local_err
= NULL
;
299 f
= fopen(filename
, "r");
301 error_setg_errno(errp
, errno
, "Could not read blkdebug config file");
305 ret
= qemu_config_parse(f
, config_groups
, filename
);
307 error_setg(errp
, "Could not parse blkdebug config file");
313 qemu_config_parse_qdict(options
, config_groups
, &local_err
);
315 error_propagate(errp
, local_err
);
321 d
.action
= ACTION_INJECT_ERROR
;
322 qemu_opts_foreach(&inject_error_opts
, add_rule
, &d
, &local_err
);
324 error_propagate(errp
, local_err
);
329 d
.action
= ACTION_SET_STATE
;
330 qemu_opts_foreach(&set_state_opts
, add_rule
, &d
, &local_err
);
332 error_propagate(errp
, local_err
);
339 qemu_opts_reset(&inject_error_opts
);
340 qemu_opts_reset(&set_state_opts
);
347 /* Valid blkdebug filenames look like blkdebug:path/to/config:path/to/image */
348 static void blkdebug_parse_filename(const char *filename
, QDict
*options
,
353 /* Parse the blkdebug: prefix */
354 if (!strstart(filename
, "blkdebug:", &filename
)) {
355 /* There was no prefix; therefore, all options have to be already
356 present in the QDict (except for the filename) */
357 qdict_put(options
, "x-image", qstring_from_str(filename
));
361 /* Parse config file path */
362 c
= strchr(filename
, ':');
364 error_setg(errp
, "blkdebug requires both config file and image path");
369 QString
*config_path
;
370 config_path
= qstring_from_substr(filename
, 0, c
- filename
- 1);
371 qdict_put(options
, "config", config_path
);
374 /* TODO Allow multi-level nesting and set file.filename here */
376 qdict_put(options
, "x-image", qstring_from_str(filename
));
379 static QemuOptsList runtime_opts
= {
381 .head
= QTAILQ_HEAD_INITIALIZER(runtime_opts
.head
),
385 .type
= QEMU_OPT_STRING
,
386 .help
= "Path to the configuration file",
390 .type
= QEMU_OPT_STRING
,
391 .help
= "[internal use only, will be removed]",
395 .type
= QEMU_OPT_SIZE
,
396 .help
= "Required alignment in bytes",
398 { /* end of list */ }
402 static int blkdebug_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
405 BDRVBlkdebugState
*s
= bs
->opaque
;
407 Error
*local_err
= NULL
;
412 opts
= qemu_opts_create(&runtime_opts
, NULL
, 0, &error_abort
);
413 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
415 error_propagate(errp
, local_err
);
420 /* Read rules from config file or command line options */
421 config
= qemu_opt_get(opts
, "config");
422 ret
= read_config(s
, config
, options
, errp
);
427 /* Set initial state */
430 /* Open the image file */
431 bs
->file
= bdrv_open_child(qemu_opt_get(opts
, "x-image"), options
, "image",
432 bs
, &child_file
, false, &local_err
);
435 error_propagate(errp
, local_err
);
439 /* Set request alignment */
440 align
= qemu_opt_get_size(opts
, "align", bs
->request_alignment
);
441 if (align
> 0 && align
< INT_MAX
&& !(align
& (align
- 1))) {
442 bs
->request_alignment
= align
;
444 error_setg(errp
, "Invalid alignment");
453 bdrv_unref_child(bs
, bs
->file
);
459 static void error_callback_bh(void *opaque
)
461 struct BlkdebugAIOCB
*acb
= opaque
;
462 qemu_bh_delete(acb
->bh
);
463 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
467 static BlockAIOCB
*inject_error(BlockDriverState
*bs
,
468 BlockCompletionFunc
*cb
, void *opaque
, BlkdebugRule
*rule
)
470 BDRVBlkdebugState
*s
= bs
->opaque
;
471 int error
= rule
->options
.inject
.error
;
472 struct BlkdebugAIOCB
*acb
;
474 bool immediately
= rule
->options
.inject
.immediately
;
476 if (rule
->options
.inject
.once
) {
477 QSIMPLEQ_REMOVE(&s
->active_rules
, rule
, BlkdebugRule
, active_next
);
485 acb
= qemu_aio_get(&blkdebug_aiocb_info
, bs
, cb
, opaque
);
488 bh
= aio_bh_new(bdrv_get_aio_context(bs
), error_callback_bh
, acb
);
490 qemu_bh_schedule(bh
);
495 static BlockAIOCB
*blkdebug_aio_readv(BlockDriverState
*bs
,
496 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
497 BlockCompletionFunc
*cb
, void *opaque
)
499 BDRVBlkdebugState
*s
= bs
->opaque
;
500 BlkdebugRule
*rule
= NULL
;
502 QSIMPLEQ_FOREACH(rule
, &s
->active_rules
, active_next
) {
503 if (rule
->options
.inject
.sector
== -1 ||
504 (rule
->options
.inject
.sector
>= sector_num
&&
505 rule
->options
.inject
.sector
< sector_num
+ nb_sectors
)) {
510 if (rule
&& rule
->options
.inject
.error
) {
511 return inject_error(bs
, cb
, opaque
, rule
);
514 return bdrv_aio_readv(bs
->file
->bs
, sector_num
, qiov
, nb_sectors
,
518 static BlockAIOCB
*blkdebug_aio_writev(BlockDriverState
*bs
,
519 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
520 BlockCompletionFunc
*cb
, void *opaque
)
522 BDRVBlkdebugState
*s
= bs
->opaque
;
523 BlkdebugRule
*rule
= NULL
;
525 QSIMPLEQ_FOREACH(rule
, &s
->active_rules
, active_next
) {
526 if (rule
->options
.inject
.sector
== -1 ||
527 (rule
->options
.inject
.sector
>= sector_num
&&
528 rule
->options
.inject
.sector
< sector_num
+ nb_sectors
)) {
533 if (rule
&& rule
->options
.inject
.error
) {
534 return inject_error(bs
, cb
, opaque
, rule
);
537 return bdrv_aio_writev(bs
->file
->bs
, sector_num
, qiov
, nb_sectors
,
541 static BlockAIOCB
*blkdebug_aio_flush(BlockDriverState
*bs
,
542 BlockCompletionFunc
*cb
, void *opaque
)
544 BDRVBlkdebugState
*s
= bs
->opaque
;
545 BlkdebugRule
*rule
= NULL
;
547 QSIMPLEQ_FOREACH(rule
, &s
->active_rules
, active_next
) {
548 if (rule
->options
.inject
.sector
== -1) {
553 if (rule
&& rule
->options
.inject
.error
) {
554 return inject_error(bs
, cb
, opaque
, rule
);
557 return bdrv_aio_flush(bs
->file
->bs
, cb
, opaque
);
561 static void blkdebug_close(BlockDriverState
*bs
)
563 BDRVBlkdebugState
*s
= bs
->opaque
;
564 BlkdebugRule
*rule
, *next
;
567 for (i
= 0; i
< BLKDBG_EVENT_MAX
; i
++) {
568 QLIST_FOREACH_SAFE(rule
, &s
->rules
[i
], next
, next
) {
574 static void suspend_request(BlockDriverState
*bs
, BlkdebugRule
*rule
)
576 BDRVBlkdebugState
*s
= bs
->opaque
;
577 BlkdebugSuspendedReq r
;
579 r
= (BlkdebugSuspendedReq
) {
580 .co
= qemu_coroutine_self(),
581 .tag
= g_strdup(rule
->options
.suspend
.tag
),
585 QLIST_INSERT_HEAD(&s
->suspended_reqs
, &r
, next
);
587 if (!qtest_enabled()) {
588 printf("blkdebug: Suspended request '%s'\n", r
.tag
);
590 qemu_coroutine_yield();
591 if (!qtest_enabled()) {
592 printf("blkdebug: Resuming request '%s'\n", r
.tag
);
595 QLIST_REMOVE(&r
, next
);
599 static bool process_rule(BlockDriverState
*bs
, struct BlkdebugRule
*rule
,
602 BDRVBlkdebugState
*s
= bs
->opaque
;
604 /* Only process rules for the current state */
605 if (rule
->state
&& rule
->state
!= s
->state
) {
609 /* Take the action */
610 switch (rule
->action
) {
611 case ACTION_INJECT_ERROR
:
613 QSIMPLEQ_INIT(&s
->active_rules
);
616 QSIMPLEQ_INSERT_HEAD(&s
->active_rules
, rule
, active_next
);
619 case ACTION_SET_STATE
:
620 s
->new_state
= rule
->options
.set_state
.new_state
;
624 suspend_request(bs
, rule
);
630 static void blkdebug_debug_event(BlockDriverState
*bs
, BlkDebugEvent event
)
632 BDRVBlkdebugState
*s
= bs
->opaque
;
633 struct BlkdebugRule
*rule
, *next
;
636 assert((int)event
>= 0 && event
< BLKDBG_EVENT_MAX
);
639 s
->new_state
= s
->state
;
640 QLIST_FOREACH_SAFE(rule
, &s
->rules
[event
], next
, next
) {
641 injected
= process_rule(bs
, rule
, injected
);
643 s
->state
= s
->new_state
;
646 static int blkdebug_debug_breakpoint(BlockDriverState
*bs
, const char *event
,
649 BDRVBlkdebugState
*s
= bs
->opaque
;
650 struct BlkdebugRule
*rule
;
651 BlkDebugEvent blkdebug_event
;
653 if (get_event_by_name(event
, &blkdebug_event
) < 0) {
658 rule
= g_malloc(sizeof(*rule
));
659 *rule
= (struct BlkdebugRule
) {
660 .event
= blkdebug_event
,
661 .action
= ACTION_SUSPEND
,
663 .options
.suspend
.tag
= g_strdup(tag
),
666 QLIST_INSERT_HEAD(&s
->rules
[blkdebug_event
], rule
, next
);
671 static int blkdebug_debug_resume(BlockDriverState
*bs
, const char *tag
)
673 BDRVBlkdebugState
*s
= bs
->opaque
;
674 BlkdebugSuspendedReq
*r
, *next
;
676 QLIST_FOREACH_SAFE(r
, &s
->suspended_reqs
, next
, next
) {
677 if (!strcmp(r
->tag
, tag
)) {
678 qemu_coroutine_enter(r
->co
, NULL
);
685 static int blkdebug_debug_remove_breakpoint(BlockDriverState
*bs
,
688 BDRVBlkdebugState
*s
= bs
->opaque
;
689 BlkdebugSuspendedReq
*r
, *r_next
;
690 BlkdebugRule
*rule
, *next
;
691 int i
, ret
= -ENOENT
;
693 for (i
= 0; i
< BLKDBG_EVENT_MAX
; i
++) {
694 QLIST_FOREACH_SAFE(rule
, &s
->rules
[i
], next
, next
) {
695 if (rule
->action
== ACTION_SUSPEND
&&
696 !strcmp(rule
->options
.suspend
.tag
, tag
)) {
702 QLIST_FOREACH_SAFE(r
, &s
->suspended_reqs
, next
, r_next
) {
703 if (!strcmp(r
->tag
, tag
)) {
704 qemu_coroutine_enter(r
->co
, NULL
);
711 static bool blkdebug_debug_is_suspended(BlockDriverState
*bs
, const char *tag
)
713 BDRVBlkdebugState
*s
= bs
->opaque
;
714 BlkdebugSuspendedReq
*r
;
716 QLIST_FOREACH(r
, &s
->suspended_reqs
, next
) {
717 if (!strcmp(r
->tag
, tag
)) {
724 static int64_t blkdebug_getlength(BlockDriverState
*bs
)
726 return bdrv_getlength(bs
->file
->bs
);
729 static int blkdebug_truncate(BlockDriverState
*bs
, int64_t offset
)
731 return bdrv_truncate(bs
->file
->bs
, offset
);
734 static void blkdebug_refresh_filename(BlockDriverState
*bs
)
738 bool force_json
= false;
740 for (e
= qdict_first(bs
->options
); e
; e
= qdict_next(bs
->options
, e
)) {
741 if (strcmp(qdict_entry_key(e
), "config") &&
742 strcmp(qdict_entry_key(e
), "x-image") &&
743 strcmp(qdict_entry_key(e
), "image") &&
744 strncmp(qdict_entry_key(e
), "image.", strlen("image.")))
751 if (force_json
&& !bs
->file
->bs
->full_open_options
) {
752 /* The config file cannot be recreated, so creating a plain filename
757 if (!force_json
&& bs
->file
->bs
->exact_filename
[0]) {
758 snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
760 qdict_get_try_str(bs
->options
, "config") ?: "",
761 bs
->file
->bs
->exact_filename
);
765 qdict_put_obj(opts
, "driver", QOBJECT(qstring_from_str("blkdebug")));
767 QINCREF(bs
->file
->bs
->full_open_options
);
768 qdict_put_obj(opts
, "image", QOBJECT(bs
->file
->bs
->full_open_options
));
770 for (e
= qdict_first(bs
->options
); e
; e
= qdict_next(bs
->options
, e
)) {
771 if (strcmp(qdict_entry_key(e
), "x-image") &&
772 strcmp(qdict_entry_key(e
), "image") &&
773 strncmp(qdict_entry_key(e
), "image.", strlen("image.")))
775 qobject_incref(qdict_entry_value(e
));
776 qdict_put_obj(opts
, qdict_entry_key(e
), qdict_entry_value(e
));
780 bs
->full_open_options
= opts
;
783 static BlockDriver bdrv_blkdebug
= {
784 .format_name
= "blkdebug",
785 .protocol_name
= "blkdebug",
786 .instance_size
= sizeof(BDRVBlkdebugState
),
788 .bdrv_parse_filename
= blkdebug_parse_filename
,
789 .bdrv_file_open
= blkdebug_open
,
790 .bdrv_close
= blkdebug_close
,
791 .bdrv_getlength
= blkdebug_getlength
,
792 .bdrv_truncate
= blkdebug_truncate
,
793 .bdrv_refresh_filename
= blkdebug_refresh_filename
,
795 .bdrv_aio_readv
= blkdebug_aio_readv
,
796 .bdrv_aio_writev
= blkdebug_aio_writev
,
797 .bdrv_aio_flush
= blkdebug_aio_flush
,
799 .bdrv_debug_event
= blkdebug_debug_event
,
800 .bdrv_debug_breakpoint
= blkdebug_debug_breakpoint
,
801 .bdrv_debug_remove_breakpoint
802 = blkdebug_debug_remove_breakpoint
,
803 .bdrv_debug_resume
= blkdebug_debug_resume
,
804 .bdrv_debug_is_suspended
= blkdebug_debug_is_suspended
,
807 static void bdrv_blkdebug_init(void)
809 bdrv_register(&bdrv_blkdebug
);
812 block_init(bdrv_blkdebug_init
);