• E
    qemu: allow getting < max typed parameters · 97656536
    Eric Blake 提交于
    Since all virTypedParameter APIs allow us to return the number
    of slots we actually populated, we should allow the user to
    call with nparams too small (without overrunning their array)
    or too large (ignoring the tail of the array that we can't fill),
    rather than requiring that they get things exactly right.
    
    Making this change will make it easier for a future patch to
    introduce VIR_TYPED_PARAM_STRING, with filtering in libvirt.c
    rather than in every single driver, since users already have
    to be prepared for *nparams to be smaller on exit than on entry.
    
    * src/qemu/qemu_driver.c (qemuDomainGetBlkioParameters)
    (qemuDomainGetMemoryParameters): Allow variable nparams on entry.
    (qemuGetSchedulerParametersFlags): Drop redundant check.
    (qemudDomainBlockStats, qemudDomainBlockStatsFlags): Rename...
    (qemuDomainBlockStats, qemuDomainBlockStatsFlags): ...to this.
    Don't return unavailable stats.
    97656536
qemu_driver.c 341.9 KB