Displaying 3 results from an estimated 3 matches for "cpuid_lvl".
Did you mean:
cpuid_level
2010 Apr 19
1
[PATCH matahari] Removes all code for the previous CPUWrapper class.
...dl;
- output << "Num. Cores: " << cpu.numcores << endl;
- output << "Model: " << cpu.model << endl;
- output << "Family: " << cpu.family << endl;
- output << "CPU ID Level: " << cpu.cpuid_lvl << endl;
- output << "Speed (Mhz): " << cpu.speed << endl;
- output << "Cache (kB): " << cpu.cache << endl;
- output << "Vendor: " << cpu.vendor << endl;
- output << "Flags: " <&...
2010 Nov 12
3
Updating oVirt Server to the latest Matahari 0.4.0 schema
...een host and cpu objects, ovirt-server uses it by retrieving a list of cpus for each host:
cpu_info = @qmfc.objects(:package => 'com.redhat.matahari', :class => 'cpu', 'host' => host.object_id)
cpu properties used:
cpunum
corenum
numcores
vendor
model
family
cpuid_lvl
speed
cache
flags[0..251]
New Matahari changed the model, here are CPU-related properties from 0.4.0 Host object, there isn't separate cpu class anymore:
processors uint8 ReadOnly The number of physical CPUs.
cores uint8 Read...
2009 Nov 04
4
[PATCH server] Update daemons to use new QMF.
...> cpu.numcores,
- 'vendor' => cpu.vendor,
- 'model' => cpu.model.to_s,
- 'family' => cpu.family.to_s,
- 'cpuid_level' => cpu.cpuid_lvl,
- 'speed' => cpu.speed.to_s,
- 'cache' => cpu.cache.to_s,
- 'flags' => flags)
-
- host_db.cpus << detail
-
- debugputs "Added new...