• E
    resize: slightly alter signature · 055bbf45
    Eric Blake 提交于
    Our existing virDomainBlockResize takes an unsigned long long
    argument; if that command is later taught a DELTA and SHRINK flag,
    we cannot change its type without breaking API (but at least such
    a change would be ABI compatible).  Meanwhile, the only time a
    negative size makes sense is if both DELTA and SHRINK are used
    together, but if we keep the argument unsigned, applications can
    pass the positive delta amount by which they would like to shrink
    the system, and have the flags imply the negative value.  So,
    since this API has not yet been released, and in the interest of
    consistency with existing API, we swap virStorageVolResize to
    always pass an unsigned value.
    
    * include/libvirt/libvirt.h.in (virStorageVolResize): Use unsigned
    argument.
    * src/libvirt.c (virStorageVolResize): Likewise.
    * src/driver.h (virDrvStorageVolUpload): Adjust clients.
    * src/remote/remote_protocol.x (remote_storage_vol_resize_args):
    Likewise.
    * src/remote_protocol-structs: Regenerate.
    Suggested by Daniel P. Berrange.
    055bbf45
libvirt.c 523.2 KB