]> git.proxmox.com Git - mirror_qemu.git/blob - docs/system/deprecated.rst
configure / meson: Move check for linux/btrfs.h to meson.build
[mirror_qemu.git] / docs / system / deprecated.rst
1 Deprecated features
2 ===================
3
4 In general features are intended to be supported indefinitely once
5 introduced into QEMU. In the event that a feature needs to be removed,
6 it will be listed in this section. The feature will remain functional for the
7 release in which it was deprecated and one further release. After these two
8 releases, the feature is liable to be removed. Deprecated features may also
9 generate warnings on the console when QEMU starts up, or if activated via a
10 monitor command, however, this is not a mandatory requirement.
11
12 Prior to the 2.10.0 release there was no official policy on how
13 long features would be deprecated prior to their removal, nor
14 any documented list of which features were deprecated. Thus
15 any features deprecated prior to 2.10.0 will be treated as if
16 they were first deprecated in the 2.10.0 release.
17
18 What follows is a list of all features currently marked as
19 deprecated.
20
21 System emulator command line arguments
22 --------------------------------------
23
24 ``-usbdevice`` (since 2.10.0)
25 '''''''''''''''''''''''''''''
26
27 The ``-usbdevice DEV`` argument is now a synonym for setting
28 the ``-device usb-DEV`` argument instead. The deprecated syntax
29 would automatically enable USB support on the machine type.
30 If using the new syntax, USB support must be explicitly
31 enabled via the ``-machine usb=on`` argument.
32
33 ``-drive file=json:{...{'driver':'file'}}`` (since 3.0)
34 '''''''''''''''''''''''''''''''''''''''''''''''''''''''
35
36 The 'file' driver for drives is no longer appropriate for character or host
37 devices and will only accept regular files (S_IFREG). The correct driver
38 for these file types is 'host_cdrom' or 'host_device' as appropriate.
39
40 ``-vnc acl`` (since 4.0.0)
41 ''''''''''''''''''''''''''
42
43 The ``acl`` option to the ``-vnc`` argument has been replaced
44 by the ``tls-authz`` and ``sasl-authz`` options.
45
46 ``QEMU_AUDIO_`` environment variables and ``-audio-help`` (since 4.0)
47 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
48
49 The ``-audiodev`` argument is now the preferred way to specify audio
50 backend settings instead of environment variables. To ease migration to
51 the new format, the ``-audiodev-help`` option can be used to convert
52 the current values of the environment variables to ``-audiodev`` options.
53
54 Creating sound card devices and vnc without ``audiodev=`` property (since 4.2)
55 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
56
57 When not using the deprecated legacy audio config, each sound card
58 should specify an ``audiodev=`` property. Additionally, when using
59 vnc, you should specify an ``audiodev=`` property if you plan to
60 transmit audio through the VNC protocol.
61
62 Creating sound card devices using ``-soundhw`` (since 5.1)
63 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
64
65 Sound card devices should be created using ``-device`` instead. The
66 names are the same for most devices. The exceptions are ``hda`` which
67 needs two devices (``-device intel-hda -device hda-duplex``) and
68 ``pcspk`` which can be activated using ``-machine
69 pcspk-audiodev=<name>``.
70
71 ``-mon ...,control=readline,pretty=on|off`` (since 4.1)
72 '''''''''''''''''''''''''''''''''''''''''''''''''''''''
73
74 The ``pretty=on|off`` switch has no effect for HMP monitors, but is
75 silently ignored. Using the switch with HMP monitors will become an
76 error in the future.
77
78 ``-realtime`` (since 4.1)
79 '''''''''''''''''''''''''
80
81 The ``-realtime mlock=on|off`` argument has been replaced by the
82 ``-overcommit mem-lock=on|off`` argument.
83
84 RISC-V ``-bios`` (since 5.1)
85 ''''''''''''''''''''''''''''
86
87 QEMU 4.1 introduced support for the -bios option in QEMU for RISC-V for the
88 RISC-V virt machine and sifive_u machine. QEMU 4.1 had no changes to the
89 default behaviour to avoid breakages.
90
91 QEMU 5.1 changes the default behaviour from ``-bios none`` to ``-bios default``.
92
93 QEMU 5.1 has three options:
94 1. ``-bios default`` - This is the current default behavior if no -bios option
95 is included. This option will load the default OpenSBI firmware automatically.
96 The firmware is included with the QEMU release and no user interaction is
97 required. All a user needs to do is specify the kernel they want to boot
98 with the -kernel option
99 2. ``-bios none`` - QEMU will not automatically load any firmware. It is up
100 to the user to load all the images they need.
101 3. ``-bios <file>`` - Tells QEMU to load the specified file as the firmwrae.
102
103 ``-tb-size`` option (since 5.0)
104 '''''''''''''''''''''''''''''''
105
106 QEMU 5.0 introduced an alternative syntax to specify the size of the translation
107 block cache, ``-accel tcg,tb-size=``. The new syntax deprecates the
108 previously available ``-tb-size`` option.
109
110 ``-show-cursor`` option (since 5.0)
111 '''''''''''''''''''''''''''''''''''
112
113 Use ``-display sdl,show-cursor=on`` or
114 ``-display gtk,show-cursor=on`` instead.
115
116 ``Configuring floppies with ``-global``
117 '''''''''''''''''''''''''''''''''''''''
118
119 Use ``-device floppy,...`` instead:
120 ::
121
122 -global isa-fdc.driveA=...
123 -global sysbus-fdc.driveA=...
124 -global SUNW,fdtwo.drive=...
125
126 become
127 ::
128
129 -device floppy,unit=0,drive=...
130
131 and
132 ::
133
134 -global isa-fdc.driveB=...
135 -global sysbus-fdc.driveB=...
136
137 become
138 ::
139
140 -device floppy,unit=1,drive=...
141
142 ``-drive`` with bogus interface type
143 ''''''''''''''''''''''''''''''''''''
144
145 Drives with interface types other than ``if=none`` are for onboard
146 devices. It is possible to use drives the board doesn't pick up with
147 -device. This usage is now deprecated. Use ``if=none`` instead.
148
149
150 QEMU Machine Protocol (QMP) commands
151 ------------------------------------
152
153 ``change`` (since 2.5.0)
154 ''''''''''''''''''''''''
155
156 Use ``blockdev-change-medium`` or ``change-vnc-password`` instead.
157
158 ``blockdev-open-tray``, ``blockdev-close-tray`` argument ``device`` (since 2.8.0)
159 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
160
161 Use argument ``id`` instead.
162
163 ``eject`` argument ``device`` (since 2.8.0)
164 '''''''''''''''''''''''''''''''''''''''''''
165
166 Use argument ``id`` instead.
167
168 ``blockdev-change-medium`` argument ``device`` (since 2.8.0)
169 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
170
171 Use argument ``id`` instead.
172
173 ``block_set_io_throttle`` argument ``device`` (since 2.8.0)
174 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
175
176 Use argument ``id`` instead.
177
178 ``migrate_set_downtime`` and ``migrate_set_speed`` (since 2.8.0)
179 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
180
181 Use ``migrate-set-parameters`` instead.
182
183 ``query-named-block-nodes`` result ``encryption_key_missing`` (since 2.10.0)
184 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
185
186 Always false.
187
188 ``query-block`` result ``inserted.encryption_key_missing`` (since 2.10.0)
189 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
190
191 Always false.
192
193 ``blockdev-add`` empty string argument ``backing`` (since 2.10.0)
194 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
195
196 Use argument value ``null`` instead.
197
198 ``migrate-set-cache-size`` and ``query-migrate-cache-size`` (since 2.11.0)
199 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
200
201 Use ``migrate-set-parameters`` and ``query-migrate-parameters`` instead.
202
203 ``block-commit`` arguments ``base`` and ``top`` (since 3.1.0)
204 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
205
206 Use arguments ``base-node`` and ``top-node`` instead.
207
208 ``object-add`` option ``props`` (since 5.0)
209 '''''''''''''''''''''''''''''''''''''''''''
210
211 Specify the properties for the object as top-level arguments instead.
212
213 ``query-named-block-nodes`` and ``query-block`` result dirty-bitmaps[i].status (since 4.0)
214 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
215
216 The ``status`` field of the ``BlockDirtyInfo`` structure, returned by
217 these commands is deprecated. Two new boolean fields, ``recording`` and
218 ``busy`` effectively replace it.
219
220 ``query-block`` result field ``dirty-bitmaps`` (Since 4.2)
221 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
222
223 The ``dirty-bitmaps`` field of the ``BlockInfo`` structure, returned by
224 the query-block command is itself now deprecated. The ``dirty-bitmaps``
225 field of the ``BlockDeviceInfo`` struct should be used instead, which is the
226 type of the ``inserted`` field in query-block replies, as well as the
227 type of array items in query-named-block-nodes.
228
229 Since the ``dirty-bitmaps`` field is optionally present in both the old and
230 new locations, clients must use introspection to learn where to anticipate
231 the field if/when it does appear in command output.
232
233 ``query-cpus`` (since 2.12.0)
234 '''''''''''''''''''''''''''''
235
236 The ``query-cpus`` command is replaced by the ``query-cpus-fast`` command.
237
238 ``query-cpus-fast`` ``arch`` output member (since 3.0.0)
239 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''
240
241 The ``arch`` output member of the ``query-cpus-fast`` command is
242 replaced by the ``target`` output member.
243
244 ``query-events`` (since 4.0)
245 ''''''''''''''''''''''''''''
246
247 The ``query-events`` command has been superseded by the more powerful
248 and accurate ``query-qmp-schema`` command.
249
250 chardev client socket with ``wait`` option (since 4.0)
251 ''''''''''''''''''''''''''''''''''''''''''''''''''''''
252
253 Character devices creating sockets in client mode should not specify
254 the 'wait' field, which is only applicable to sockets in server mode
255
256 ``nbd-server-add`` and ``nbd-server-remove`` (since 5.2)
257 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''
258
259 Use the more generic commands ``block-export-add`` and ``block-export-del``
260 instead. As part of this deprecation, where ``nbd-server-add`` used a
261 single ``bitmap``, the new ``block-export-add`` uses a list of ``bitmaps``.
262
263 Human Monitor Protocol (HMP) commands
264 -------------------------------------
265
266 ``acl_show``, ``acl_reset``, ``acl_policy``, ``acl_add``, ``acl_remove`` (since 4.0.0)
267 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
268
269 The ``acl_show``, ``acl_reset``, ``acl_policy``, ``acl_add``, and
270 ``acl_remove`` commands are deprecated with no replacement. Authorization
271 for VNC should be performed using the pluggable QAuthZ objects.
272
273 System emulator CPUS
274 --------------------
275
276 ``moxie`` CPU (since 5.2.0)
277 '''''''''''''''''''''''''''
278
279 The ``moxie`` guest CPU support is deprecated and will be removed in
280 a future version of QEMU. It's unclear whether anybody is still using
281 CPU emulation in QEMU, and there are no test images available to make
282 sure that the code is still working.
283
284 ``compat`` property of server class POWER CPUs (since 5.0)
285 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
286
287 The ``compat`` property used to set backwards compatibility modes for
288 the processor has been deprecated. The ``max-cpu-compat`` property of
289 the ``pseries`` machine type should be used instead.
290
291 ``lm32`` CPUs (since 5.2.0)
292 '''''''''''''''''''''''''''
293
294 The ``lm32`` guest CPU support is deprecated and will be removed in
295 a future version of QEMU. The only public user of this architecture
296 was the milkymist project, which has been dead for years; there was
297 never an upstream Linux port.
298
299 ``unicore32`` CPUs (since 5.2.0)
300 ''''''''''''''''''''''''''''''''
301
302 The ``unicore32`` guest CPU support is deprecated and will be removed in
303 a future version of QEMU. Support for this CPU was removed from the
304 upstream Linux kernel, and there is no available upstream toolchain
305 to build binaries for it.
306
307 ``Icelake-Client`` CPU Model (since 5.2.0)
308 ''''''''''''''''''''''''''''''''''''''''''
309
310 ``Icelake-Client`` CPU Models are deprecated. Use ``Icelake-Server`` CPU
311 Models instead.
312
313 MIPS ``I7200`` CPU Model (since 5.2)
314 ''''''''''''''''''''''''''''''''''''
315
316 The ``I7200`` guest CPU relies on the nanoMIPS ISA, which is deprecated
317 (the ISA has never been upstreamed to a compiler toolchain). Therefore
318 this CPU is also deprecated.
319
320 System emulator devices
321 -----------------------
322
323 ``ide-drive`` (since 4.2)
324 '''''''''''''''''''''''''
325
326 The 'ide-drive' device is deprecated. Users should use 'ide-hd' or
327 'ide-cd' as appropriate to get an IDE hard disk or CD-ROM as needed.
328
329 ``scsi-disk`` (since 4.2)
330 '''''''''''''''''''''''''
331
332 The 'scsi-disk' device is deprecated. Users should use 'scsi-hd' or
333 'scsi-cd' as appropriate to get a SCSI hard disk or CD-ROM as needed.
334
335 System emulator machines
336 ------------------------
337
338 mips ``fulong2e`` machine (since 5.1)
339 '''''''''''''''''''''''''''''''''''''
340
341 This machine has been renamed ``fuloong2e``.
342
343 ``pc-1.0``, ``pc-1.1``, ``pc-1.2`` and ``pc-1.3`` (since 5.0)
344 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
345
346 These machine types are very old and likely can not be used for live migration
347 from old QEMU versions anymore. A newer machine type should be used instead.
348
349 Raspberry Pi ``raspi2`` and ``raspi3`` machines (since 5.2)
350 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
351
352 The Raspberry Pi machines come in various models (A, A+, B, B+). To be able
353 to distinguish which model QEMU is implementing, the ``raspi2`` and ``raspi3``
354 machines have been renamed ``raspi2b`` and ``raspi3b``.
355
356 Device options
357 --------------
358
359 Emulated device options
360 '''''''''''''''''''''''
361
362 ``-device virtio-blk,scsi=on|off`` (since 5.0.0)
363 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
364
365 The virtio-blk SCSI passthrough feature is a legacy VIRTIO feature. VIRTIO 1.0
366 and later do not support it because the virtio-scsi device was introduced for
367 full SCSI support. Use virtio-scsi instead when SCSI passthrough is required.
368
369 Note this also applies to ``-device virtio-blk-pci,scsi=on|off``, which is an
370 alias.
371
372 Block device options
373 ''''''''''''''''''''
374
375 ``"backing": ""`` (since 2.12.0)
376 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
377
378 In order to prevent QEMU from automatically opening an image's backing
379 chain, use ``"backing": null`` instead.
380
381 ``rbd`` keyvalue pair encoded filenames: ``""`` (since 3.1.0)
382 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
383
384 Options for ``rbd`` should be specified according to its runtime options,
385 like other block drivers. Legacy parsing of keyvalue pair encoded
386 filenames is useful to open images with the old format for backing files;
387 These image files should be updated to use the current format.
388
389 Example of legacy encoding::
390
391 json:{"file.driver":"rbd", "file.filename":"rbd:rbd/name"}
392
393 The above, converted to the current supported format::
394
395 json:{"file.driver":"rbd", "file.pool":"rbd", "file.image":"name"}
396
397 ``sheepdog`` driver (since 5.2.0)
398 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
399
400 The ``sheepdog`` block device driver is deprecated. The corresponding upstream
401 server project is no longer actively maintained. Users are recommended to switch
402 to an alternative distributed block device driver such as RBD. The
403 ``qemu-img convert`` command can be used to liberate existing data by moving
404 it out of sheepdog volumes into an alternative storage backend.
405
406 linux-user mode CPUs
407 --------------------
408
409 ``tilegx`` CPUs (since 5.1.0)
410 '''''''''''''''''''''''''''''
411
412 The ``tilegx`` guest CPU support (which was only implemented in
413 linux-user mode) is deprecated and will be removed in a future version
414 of QEMU. Support for this CPU was removed from the upstream Linux
415 kernel in 2018, and has also been dropped from glibc.
416
417 ``ppc64abi32`` CPUs (since 5.2.0)
418 '''''''''''''''''''''''''''''''''
419
420 The ``ppc64abi32`` architecture has a number of issues which regularly
421 trip up our CI testing and is suspected to be quite broken. For that
422 reason the maintainers strongly suspect no one actually uses it.
423
424 MIPS ``I7200`` CPU (since 5.2)
425 ''''''''''''''''''''''''''''''
426
427 The ``I7200`` guest CPU relies on the nanoMIPS ISA, which is deprecated
428 (the ISA has never been upstreamed to a compiler toolchain). Therefore
429 this CPU is also deprecated.
430
431 Related binaries
432 ----------------
433
434 qemu-img amend to adjust backing file (since 5.1)
435 '''''''''''''''''''''''''''''''''''''''''''''''''
436
437 The use of ``qemu-img amend`` to modify the name or format of a qcow2
438 backing image is deprecated; this functionality was never fully
439 documented or tested, and interferes with other amend operations that
440 need access to the original backing image (such as deciding whether a
441 v3 zero cluster may be left unallocated when converting to a v2
442 image). Rather, any changes to the backing chain should be performed
443 with ``qemu-img rebase -u`` either before or after the remaining
444 changes being performed by amend, as appropriate.
445
446 qemu-img backing file without format (since 5.1)
447 ''''''''''''''''''''''''''''''''''''''''''''''''
448
449 The use of ``qemu-img create``, ``qemu-img rebase``, or ``qemu-img
450 convert`` to create or modify an image that depends on a backing file
451 now recommends that an explicit backing format be provided. This is
452 for safety: if QEMU probes a different format than what you thought,
453 the data presented to the guest will be corrupt; similarly, presenting
454 a raw image to a guest allows a potential security exploit if a future
455 probe sees a non-raw image based on guest writes.
456
457 To avoid the warning message, or even future refusal to create an
458 unsafe image, you must pass ``-o backing_fmt=`` (or the shorthand
459 ``-F`` during create) to specify the intended backing format. You may
460 use ``qemu-img rebase -u`` to retroactively add a backing format to an
461 existing image. However, be aware that there are already potential
462 security risks to blindly using ``qemu-img info`` to probe the format
463 of an untrusted backing image, when deciding what format to add into
464 an existing image.
465
466 Backwards compatibility
467 -----------------------
468
469 Runnability guarantee of CPU models (since 4.1.0)
470 '''''''''''''''''''''''''''''''''''''''''''''''''
471
472 Previous versions of QEMU never changed existing CPU models in
473 ways that introduced additional host software or hardware
474 requirements to the VM. This allowed management software to
475 safely change the machine type of an existing VM without
476 introducing new requirements ("runnability guarantee"). This
477 prevented CPU models from being updated to include CPU
478 vulnerability mitigations, leaving guests vulnerable in the
479 default configuration.
480
481 The CPU model runnability guarantee won't apply anymore to
482 existing CPU models. Management software that needs runnability
483 guarantees must resolve the CPU model aliases using the
484 ``alias-of`` field returned by the ``query-cpu-definitions`` QMP
485 command.
486
487 While those guarantees are kept, the return value of
488 ``query-cpu-definitions`` will have existing CPU model aliases
489 point to a version that doesn't break runnability guarantees
490 (specifically, version 1 of those CPU models). In future QEMU
491 versions, aliases will point to newer CPU model versions
492 depending on the machine type, so management software must
493 resolve CPU model aliases before starting a virtual machine.
494
495 Guest Emulator ISAs
496 -------------------
497
498 nanoMIPS ISA
499 ''''''''''''
500
501 The ``nanoMIPS`` ISA has never been upstreamed to any compiler toolchain.
502 As it is hard to generate binaries for it, declare it deprecated.
503
504
505 Recently removed features
506 =========================
507
508 What follows is a record of recently removed, formerly deprecated
509 features that serves as a record for users who have encountered
510 trouble after a recent upgrade.
511
512 System emulator command line arguments
513 --------------------------------------
514
515 ``-net ...,name=``\ *name* (removed in 5.1)
516 '''''''''''''''''''''''''''''''''''''''''''
517
518 The ``name`` parameter of the ``-net`` option was a synonym
519 for the ``id`` parameter, which should now be used instead.
520
521 ``-no-kvm`` (removed in 5.2)
522 ''''''''''''''''''''''''''''
523
524 The ``-no-kvm`` argument was a synonym for setting ``-machine accel=tcg``.
525
526
527 QEMU Machine Protocol (QMP) commands
528 ------------------------------------
529
530 ``block-dirty-bitmap-add`` "autoload" parameter (since 4.2.0)
531 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
532
533 The "autoload" parameter has been ignored since 2.12.0. All bitmaps
534 are automatically loaded from qcow2 images.
535
536 ``cpu-add`` (removed in 5.2)
537 ''''''''''''''''''''''''''''
538
539 Use ``device_add`` for hotplugging vCPUs instead of ``cpu-add``. See
540 documentation of ``query-hotpluggable-cpus`` for additional details.
541
542 Human Monitor Protocol (HMP) commands
543 -------------------------------------
544
545 The ``hub_id`` parameter of ``hostfwd_add`` / ``hostfwd_remove`` (removed in 5.0)
546 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
547
548 The ``[hub_id name]`` parameter tuple of the 'hostfwd_add' and
549 'hostfwd_remove' HMP commands has been replaced by ``netdev_id``.
550
551 ``cpu-add`` (removed in 5.2)
552 ''''''''''''''''''''''''''''
553
554 Use ``device_add`` for hotplugging vCPUs instead of ``cpu-add``. See
555 documentation of ``query-hotpluggable-cpus`` for additional details.
556
557 Guest Emulator ISAs
558 -------------------
559
560 RISC-V ISA privilege specification version 1.09.1 (removed in 5.1)
561 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
562
563 The RISC-V ISA privilege specification version 1.09.1 has been removed.
564 QEMU supports both the newer version 1.10.0 and the ratified version 1.11.0, these
565 should be used instead of the 1.09.1 version.
566
567 System emulator CPUS
568 --------------------
569
570 KVM guest support on 32-bit Arm hosts (removed in 5.2)
571 ''''''''''''''''''''''''''''''''''''''''''''''''''''''
572
573 The Linux kernel has dropped support for allowing 32-bit Arm systems
574 to host KVM guests as of the 5.7 kernel. Accordingly, QEMU is deprecating
575 its support for this configuration and will remove it in a future version.
576 Running 32-bit guests on a 64-bit Arm host remains supported.
577
578 RISC-V ISA Specific CPUs (removed in 5.1)
579 '''''''''''''''''''''''''''''''''''''''''
580
581 The RISC-V cpus with the ISA version in the CPU name have been removed. The
582 four CPUs are: ``rv32gcsu-v1.9.1``, ``rv32gcsu-v1.10.0``, ``rv64gcsu-v1.9.1`` and
583 ``rv64gcsu-v1.10.0``. Instead the version can be specified via the CPU ``priv_spec``
584 option when using the ``rv32`` or ``rv64`` CPUs.
585
586 RISC-V no MMU CPUs (removed in 5.1)
587 '''''''''''''''''''''''''''''''''''
588
589 The RISC-V no MMU cpus have been removed. The two CPUs: ``rv32imacu-nommu`` and
590 ``rv64imacu-nommu`` can no longer be used. Instead the MMU status can be specified
591 via the CPU ``mmu`` option when using the ``rv32`` or ``rv64`` CPUs.
592
593 System emulator machines
594 ------------------------
595
596 ``spike_v1.9.1`` and ``spike_v1.10`` (removed in 5.1)
597 '''''''''''''''''''''''''''''''''''''''''''''''''''''
598
599 The version specific Spike machines have been removed in favour of the
600 generic ``spike`` machine. If you need to specify an older version of the RISC-V
601 spec you can use the ``-cpu rv64gcsu,priv_spec=v1.10.0`` command line argument.
602
603 mips ``r4k`` platform (removed in 5.2)
604 ''''''''''''''''''''''''''''''''''''''
605
606 This machine type was very old and unmaintained. Users should use the ``malta``
607 machine type instead.
608
609 Related binaries
610 ----------------
611
612 ``qemu-nbd --partition`` (removed in 5.0)
613 '''''''''''''''''''''''''''''''''''''''''
614
615 The ``qemu-nbd --partition $digit`` code (also spelled ``-P``)
616 could only handle MBR partitions, and never correctly handled logical
617 partitions beyond partition 5. Exporting a partition can still be
618 done by utilizing the ``--image-opts`` option with a raw blockdev
619 using the ``offset`` and ``size`` parameters layered on top of
620 any other existing blockdev. For example, if partition 1 is 100MiB
621 long starting at 1MiB, the old command::
622
623 qemu-nbd -t -P 1 -f qcow2 file.qcow2
624
625 can be rewritten as::
626
627 qemu-nbd -t --image-opts driver=raw,offset=1M,size=100M,file.driver=qcow2,file.file.driver=file,file.file.filename=file.qcow2
628
629 ``qemu-img convert -n -o`` (removed in 5.1)
630 '''''''''''''''''''''''''''''''''''''''''''
631
632 All options specified in ``-o`` are image creation options, so
633 they are now rejected when used with ``-n`` to skip image creation.
634
635
636 ``qemu-img create -b bad file $size`` (removed in 5.1)
637 ''''''''''''''''''''''''''''''''''''''''''''''''''''''
638
639 When creating an image with a backing file that could not be opened,
640 ``qemu-img create`` used to issue a warning about the failure but
641 proceed with the image creation if an explicit size was provided.
642 However, as the ``-u`` option exists for this purpose, it is safer to
643 enforce that any failure to open the backing image (including if the
644 backing file is missing or an incorrect format was specified) is an
645 error when ``-u`` is not used.
646
647 Command line options
648 --------------------
649
650 ``-smp`` (invalid topologies) (removed 5.2)
651 '''''''''''''''''''''''''''''''''''''''''''
652
653 CPU topology properties should describe whole machine topology including
654 possible CPUs.
655
656 However, historically it was possible to start QEMU with an incorrect topology
657 where *n* <= *sockets* * *cores* * *threads* < *maxcpus*,
658 which could lead to an incorrect topology enumeration by the guest.
659 Support for invalid topologies is removed, the user must ensure
660 topologies described with -smp include all possible cpus, i.e.
661 *sockets* * *cores* * *threads* = *maxcpus*.
662
663 ``-numa`` node (without memory specified) (removed 5.2)
664 '''''''''''''''''''''''''''''''''''''''''''''''''''''''
665
666 Splitting RAM by default between NUMA nodes had the same issues as ``mem``
667 parameter with the difference that the role of the user plays QEMU using
668 implicit generic or board specific splitting rule.
669 Use ``memdev`` with *memory-backend-ram* backend or ``mem`` (if
670 it's supported by used machine type) to define mapping explicitly instead.
671 Users of existing VMs, wishing to preserve the same RAM distribution, should
672 configure it explicitly using ``-numa node,memdev`` options. Current RAM
673 distribution can be retrieved using HMP command ``info numa`` and if separate
674 memory devices (pc|nv-dimm) are present use ``info memory-device`` and subtract
675 device memory from output of ``info numa``.
676
677 ``-numa node,mem=``\ *size* (removed in 5.1)
678 ''''''''''''''''''''''''''''''''''''''''''''
679
680 The parameter ``mem`` of ``-numa node`` was used to assign a part of
681 guest RAM to a NUMA node. But when using it, it's impossible to manage a specified
682 RAM chunk on the host side (like bind it to a host node, setting bind policy, ...),
683 so the guest ends up with the fake NUMA configuration with suboptiomal performance.
684 However since 2014 there is an alternative way to assign RAM to a NUMA node
685 using parameter ``memdev``, which does the same as ``mem`` and adds
686 means to actually manage node RAM on the host side. Use parameter ``memdev``
687 with *memory-backend-ram* backend as replacement for parameter ``mem``
688 to achieve the same fake NUMA effect or a properly configured
689 *memory-backend-file* backend to actually benefit from NUMA configuration.
690 New machine versions (since 5.1) will not accept the option but it will still
691 work with old machine types. User can check the QAPI schema to see if the legacy
692 option is supported by looking at MachineInfo::numa-mem-supported property.
693
694 ``-mem-path`` fallback to RAM (removed in 5.0)
695 ''''''''''''''''''''''''''''''''''''''''''''''
696
697 If guest RAM allocation from file pointed by ``mem-path`` failed,
698 QEMU was falling back to allocating from RAM, which might have resulted
699 in unpredictable behavior since the backing file specified by the user
700 as ignored. Currently, users are responsible for making sure the backing storage
701 specified with ``-mem-path`` can actually provide the guest RAM configured with
702 ``-m`` and QEMU fails to start up if RAM allocation is unsuccessful.
703
704 ``-smp`` (invalid topologies) (removed 5.2)
705 '''''''''''''''''''''''''''''''''''''''''''
706
707 CPU topology properties should describe whole machine topology including
708 possible CPUs.
709
710 However, historically it was possible to start QEMU with an incorrect topology
711 where *n* <= *sockets* * *cores* * *threads* < *maxcpus*,
712 which could lead to an incorrect topology enumeration by the guest.
713 Support for invalid topologies is removed, the user must ensure
714 topologies described with -smp include all possible cpus, i.e.
715 *sockets* * *cores* * *threads* = *maxcpus*.
716
717 ``-machine enforce-config-section=on|off`` (removed 5.2)
718 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''
719
720 The ``enforce-config-section`` property was replaced by the
721 ``-global migration.send-configuration={on|off}`` option.
722
723 Block devices
724 -------------
725
726 VXHS backend (removed in 5.1)
727 '''''''''''''''''''''''''''''
728
729 The VXHS code does not compile since v2.12.0. It was removed in 5.1.