I need set kvm virtual machine's disk IoTune by using python libvirt. After searching, i found a method "setBlockIoTune" at libvirt.py, it just call c api virDomainSetBlockIoTune,
int virDomainSetInterfaceParameters (virDomainPtr domain,
const char * device,
virTypedParameterPtr params,
int nparams,
unsigned int flags)
Here is the problem, I can't find how to set a value for "virTypedParameterPtr params" in in python livirt. The doc does't talk about it.
Please help me, Thanks!!
orz
I just call libvirt python api "blockIoTune(dev)" to get a result, modify it then pass to setBlockIoTune.
result of blockIoTune(dev):
Hope this could help someone :)