| Submitter | Benoît Canet |
|---|---|
| Date | Jan. 16, 2013, 4:25 p.m. |
| Message ID | <1358353518-5421-2-git-send-email-benoit@irqsave.net> |
| Download | mbox | patch |
| Permalink | /patch/212968/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/include/block/block_int.h b/include/block/block_int.h index b7ed3e6..bb35df9 100644 --- a/include/block/block_int.h +++ b/include/block/block_int.h @@ -203,6 +203,10 @@ struct BlockDriver { */ int (*bdrv_has_zero_init)(BlockDriverState *bs); + /* to pause and resume deduplication (mainly qcow2) */ + void (*bdrv_resume_dedup)(BlockDriverState *bs); + void (*bdrv_pause_dedup)(BlockDriverState *bs); + QLIST_ENTRY(BlockDriver) list; };