mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-29 04:50:26 +00:00
At the moment only x86 is covered, ARM needs own handler. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
25 lines
554 B
Protocol Buffer
25 lines
554 B
Protocol Buffer
message cpuinfo_x86_entry {
|
|
enum vendor {
|
|
UNKNOWN = 0;
|
|
INTEL = 1;
|
|
AMD = 2;
|
|
}
|
|
|
|
required vendor vendor_id = 1;
|
|
required uint32 cpu_family = 2;
|
|
required uint32 model = 3;
|
|
required uint32 stepping = 4;
|
|
required uint32 capability_ver = 5;
|
|
repeated uint32 capability = 6;
|
|
|
|
optional string model_id = 7;
|
|
}
|
|
|
|
message cpuinfo_entry {
|
|
/*
|
|
* Usually on SMP system there should be same CPUs
|
|
* installed, but it might happen that system carries
|
|
* various CPUs so @repeated used.
|
|
*/
|
|
repeated cpuinfo_x86_entry x86_entry = 1;
|
|
}
|