mirror of
https://gitlab.com/libvirt/libvirt-python.git
synced 2025-08-02 04:21:59 +03:00
Rename virDomainIOThreadsInfoFree to virDomainIOThreadInfoFree
This commit is contained in:
@ -594,7 +594,7 @@ skip_function = (
|
|||||||
'virNetworkDHCPLeaseFree', # only useful in C, python code uses list
|
'virNetworkDHCPLeaseFree', # only useful in C, python code uses list
|
||||||
'virDomainStatsRecordListFree', # only useful in C, python uses dict
|
'virDomainStatsRecordListFree', # only useful in C, python uses dict
|
||||||
'virDomainFSInfoFree', # only useful in C, python code uses list
|
'virDomainFSInfoFree', # only useful in C, python code uses list
|
||||||
'virDomainIOThreadsInfoFree', # only useful in C, python code uses list
|
'virDomainIOThreadInfoFree', # only useful in C, python code uses list
|
||||||
)
|
)
|
||||||
|
|
||||||
lxc_skip_function = (
|
lxc_skip_function = (
|
||||||
|
@ -2075,7 +2075,7 @@ libvirt_virDomainGetIOThreadsInfo(PyObject *self ATTRIBUTE_UNUSED,
|
|||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
for (i = 0; i < niothreads; i++)
|
for (i = 0; i < niothreads; i++)
|
||||||
virDomainIOThreadsInfoFree(iothrinfo[i]);
|
virDomainIOThreadInfoFree(iothrinfo[i]);
|
||||||
VIR_FREE(iothrinfo);
|
VIR_FREE(iothrinfo);
|
||||||
Py_XDECREF(py_iothrinfo);
|
Py_XDECREF(py_iothrinfo);
|
||||||
return py_retval;
|
return py_retval;
|
||||||
|
@ -142,7 +142,7 @@ for cname in wantfunctions:
|
|||||||
if name[0:19] == "virDomainFSInfoFree":
|
if name[0:19] == "virDomainFSInfoFree":
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if name[0:26] == "virDomainIOThreadsInfoFree":
|
if name[0:25] == "virDomainIOThreadInfoFree":
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if name[0:21] == "virDomainListGetStats":
|
if name[0:21] == "virDomainListGetStats":
|
||||||
|
Reference in New Issue
Block a user