Lines Matching +full:low +full:-

7 command, defining 4 CPUs, where CPU[0] is defined by the -smp argument and will
10 .. code-block:: bash
12 qemu-system-s390x \
13 -enable-kvm \
14 -cpu z14,ctop=on \
15 -smp 1,drawers=3,books=3,sockets=2,cores=2,maxcpus=36 \
16 -device z14-s390x-cpu,core-id=19,entitlement=high \
17 -device z14-s390x-cpu,core-id=11,entitlement=low \
18 -device z14-s390x-cpu,core-id=12,entitlement=high \
21 Additions to query-cpus-fast
22 ----------------------------
24 The command query-cpus-fast allows querying the topology tree and
27 .. code-block:: QMP
29 { "execute": "query-cpus-fast" }
34 "thread-id": 536993,
36 "core-id": 0,
37 "socket-id": 0,
38 "drawer-id": 0,
39 "book-id": 0
41 "cpu-state": "operating",
43 "qom-path": "/machine/unattached/device[0]",
44 "cpu-index": 0,
49 "thread-id": 537003,
51 "core-id": 19,
52 "socket-id": 1,
53 "drawer-id": 0,
54 "book-id": 2
56 "cpu-state": "operating",
58 "qom-path": "/machine/peripheral-anon/device[0]",
59 "cpu-index": 19,
64 "thread-id": 537004,
66 "core-id": 11,
67 "socket-id": 1,
68 "drawer-id": 0,
69 "book-id": 1
71 "cpu-state": "operating",
72 "entitlement": "low",
73 "qom-path": "/machine/peripheral-anon/device[1]",
74 "cpu-index": 11,
79 "thread-id": 537005,
81 "core-id": 12,
82 "socket-id": 0,
83 "drawer-id": 3,
84 "book-id": 2
86 "cpu-state": "operating",
88 "qom-path": "/machine/peripheral-anon/device[2]",
89 "cpu-index": 12,
96 QAPI command: set-cpu-topology
97 ------------------------------
99 The command set-cpu-topology allows modifying the topology tree
102 .. code-block:: QMP
104 { "execute": "set-cpu-topology",
106 "core-id": 11,
107 "socket-id": 0,
108 "book-id": 0,
109 "drawer-id": 0,
110 "entitlement": "low",
116 The core-id parameter is the only mandatory parameter and every
120 ----------------------------------
133 - Horizontal
134 - Horizontal dedicated
135 - Vertical low
136 - Vertical medium
137 - Vertical high
138 - Vertical high dedicated
143 .. code-block:: QMP
156 QAPI query command: query-s390x-cpu-polarization
157 ------------------------------------------------
159 The query command query-s390x-cpu-polarization returns the current
163 .. code-block:: QMP
165 { "execute": "query-s390x-cpu-polarization" }