summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/105/graphic/55961334
blob: 3bd906bbbdf65f9d7761eb38058de83915111fa0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
graphic: 0.909
KVM: 0.881
instruction: 0.803
semantic: 0.775
device: 0.764
mistranslation: 0.718
other: 0.715
vnc: 0.709
network: 0.697
socket: 0.636
boot: 0.569
assembly: 0.395

[Bug] "-ht" flag ignored under KVM - guest still reports HT

Hi Community,
We have observed that the 'ht' feature bit cannot be disabled when QEMU runs
with KVM acceleration.
qemu-system-x86_64 \
  --enable-kvm \
  -machine q35 \
  -cpu host,-ht \
  -smp 4 \
  -m 4G \
  -drive file=rootfs.img,format=raw \
  -nographic \
  -append 'console=ttyS0 root=/dev/sda rw'
Because '-ht' is specified, the guest should expose no HT capability
(cpuid.1.edx[28] = 0), and /proc/cpuinfo shouldn't show HT feature, but we still
saw ht in linux guest when run 'cat /proc/cpuinfo'.
XiaoYao mentioned that:

It has been the behavior of QEMU since

  commit 400281af34e5ee6aa9f5496b53d8f82c6fef9319
  Author: Andre Przywara <andre.przywara@amd.com>
  Date:   Wed Aug 19 15:42:42 2009 +0200

    set CPUID bits to present cores and threads topology

that we cannot remove HT CPUID bit from guest via "-cpu xxx,-ht" if the
VM has >= 2 vcpus.
I'd like to know whether there's a plan to address this issue, or if the current
behaviour is considered acceptable.
Best regards,
Ewan.