mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
test: Remove unused variate @maxcpu in testDomainGetVcpus
Since refactoring by commit id '3dd859c0', @maxcpu is no longer used.
This commit is contained in:
parent
d76267b2e4
commit
b2641b4392
@ -2467,7 +2467,7 @@ static int testDomainGetVcpus(virDomainPtr domain,
|
|||||||
virDomainObjPtr privdom;
|
virDomainObjPtr privdom;
|
||||||
virDomainDefPtr def;
|
virDomainDefPtr def;
|
||||||
size_t i;
|
size_t i;
|
||||||
int maxcpu, hostcpus;
|
int hostcpus;
|
||||||
int ret = -1;
|
int ret = -1;
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
unsigned long long statbase;
|
unsigned long long statbase;
|
||||||
@ -2493,10 +2493,6 @@ static int testDomainGetVcpus(virDomainPtr domain,
|
|||||||
statbase = (tv.tv_sec * 1000UL * 1000UL) + tv.tv_usec;
|
statbase = (tv.tv_sec * 1000UL * 1000UL) + tv.tv_usec;
|
||||||
|
|
||||||
hostcpus = VIR_NODEINFO_MAXCPUS(privconn->nodeInfo);
|
hostcpus = VIR_NODEINFO_MAXCPUS(privconn->nodeInfo);
|
||||||
maxcpu = maplen * 8;
|
|
||||||
if (maxcpu > hostcpus)
|
|
||||||
maxcpu = hostcpus;
|
|
||||||
|
|
||||||
if (!(allcpumap = virBitmapNew(hostcpus)))
|
if (!(allcpumap = virBitmapNew(hostcpus)))
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user