diff options
author | Igor Mammedov <imammedo@redhat.com> | 2016-07-06 08:20:42 +0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2016-07-20 12:02:18 -0300 |
commit | d89c2b8b98e097b9cad5104b0f178bde1cfa011b (patch) | |
tree | 9e572c73c0ac5b8f2611d8d8555d093833ae2b44 /target-i386/cpu.h | |
parent | 2da00e3176abac34ca7a6aab1f5bbb94a0d03fc5 (diff) |
target-i386: Add socket/core/thread properties to X86CPU
These properties will be used by as address where to plug
CPU with help -device/device_add commands.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target-i386/cpu.h')
-rw-r--r-- | target-i386/cpu.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index 0ff88e155a..c883cd5631 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -1219,6 +1219,10 @@ struct X86CPU { Notifier machine_done; struct kvm_msrs *kvm_msr_buf; + + int32_t socket_id; + int32_t core_id; + int32_t thread_id; }; static inline X86CPU *x86_env_get_cpu(CPUX86State *env) |