• E
    block rebase: add new API virDomainBlockRebase · 99fd69c3
    Eric Blake 提交于
    Qemu is adding the ability to do a partial rebase.  That is, given:
    
    base <- intermediate <- current
    
    virDomainBlockPull will produce:
    
    current
    
    but qemu now has the ability to leave base in the chain, to produce:
    
    base <- current
    
    Note that current qemu can only do a forward merge, and only with
    the current image as the destination, which is fully described by
    this API without flags.  But in the future, it may be possible to
    enhance this API for additional scenarios by using flags:
    
    Merging the current image back into a previous image (that is,
    undoing a live snapshot), could be done by passing base as the
    destination and flags with a bit requesting a backward merge.
    
    Merging any other part of the image chain, whether forwards (the
    backing image contents are pulled into the newer file) or backwards
    (the deltas recorded in the newer file are merged back into the
    backing file), could also be done by passing a new flag that says
    that base should be treated as an XML snippet rather than an
    absolute path name, where the XML could then supply the additional
    instructions of which part of the image chain is being merged into
    any other part.
    
    * include/libvirt/libvirt.h.in (virDomainBlockRebase): New
    declaration.
    * src/libvirt.c (virDomainBlockRebase): Implement it.
    * src/libvirt_public.syms (LIBVIRT_0.9.10): Export it.
    * src/driver.h (virDrvDomainBlockRebase): New driver callback.
    * src/rpc/gendispatch.pl (long_legacy): Add exemption.
    * docs/apibuild.py (long_legacy_functions): Likewise.
    99fd69c3
driver.h 62.9 KB