docs/about/removed-features: Document removed CLI options from QEMU v3.1
[qemu/rayw.git] / docs / about / removed-features.rst
blob40d2cc4ffa93402f6eb9f8f2f74b13fe0e6ea259
2 Removed features
3 ================
5 What follows is a record of recently removed, formerly deprecated
6 features that serves as a record for users who have encountered
7 trouble after a recent upgrade.
9 System emulator command line arguments
10 --------------------------------------
12 ``-hdachs`` (removed in 2.12)
13 '''''''''''''''''''''''''''''
15 The geometry defined by ``-hdachs c,h,s,t`` should now be specified via
16 ``-device ide-hd,drive=dr,cyls=c,heads=h,secs=s,bios-chs-trans=t``
17 (together with ``-drive if=none,id=dr,...``).
19 ``-net channel`` (removed in 2.12)
20 ''''''''''''''''''''''''''''''''''
22 This option has been replaced by ``-net user,guestfwd=...``.
24 ``-net dump`` (removed in 2.12)
25 '''''''''''''''''''''''''''''''
27 ``-net dump[,vlan=n][,file=filename][,len=maxlen]`` has been replaced by
28 ``-object filter-dump,id=id,netdev=dev[,file=filename][,maxlen=maxlen]``.
29 Note that the new syntax works with netdev IDs instead of the old "vlan" hubs.
31 ``-no-kvm-pit`` (removed in 2.12)
32 '''''''''''''''''''''''''''''''''
34 This was just a dummy option that has been ignored, since the in-kernel PIT
35 cannot be disabled separately from the irqchip anymore. A similar effect
36 (which also disables the KVM IOAPIC) can be obtained with
37 ``-M kernel_irqchip=split``.
39 ``-tdf`` (removed in 2.12)
40 ''''''''''''''''''''''''''
42 There is no replacement, the ``-tdf`` option has just been ignored since the
43 behaviour that could be changed by this option in qemu-kvm is now the default
44 when using the KVM PIT. It still can be requested explicitly using
45 ``-global kvm-pit.lost_tick_policy=delay``.
47 ``-drive secs=s``, ``-drive heads=h`` & ``-drive cyls=c`` (removed in 3.0)
48 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
50 The drive geometry should now be specified via
51 ``-device ...,drive=dr,cyls=c,heads=h,secs=s`` (together with
52 ``-drive if=none,id=dr,...``).
54 ``-drive serial=``, ``-drive trans=`` & ``-drive addr=`` (removed in 3.0)
55 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
57 Use ``-device ...,drive=dr,serial=r,bios-chs-trans=t,addr=a`` instead
58 (together with ``-drive if=none,id=dr,...``).
60 ``-net ...,vlan=x`` (removed in 3.0)
61 ''''''''''''''''''''''''''''''''''''
63 The term "vlan" was very confusing for most users in this context (it's about
64 specifying a hub ID, not about IEEE 802.1Q or something similar), so this
65 has been removed. To connect one NIC frontend with a network backend, either
66 use ``-nic ...`` (e.g. for on-board NICs) or use ``-netdev ...,id=n`` together
67 with ``-device ...,netdev=n`` (for full control over pluggable NICs). To
68 connect multiple NICs or network backends via a hub device (which is what
69 vlan did), use ``-nic hubport,hubid=x,...`` or
70 ``-netdev hubport,id=n,hubid=x,...`` (with ``-device ...,netdev=n``) instead.
72 ``-no-kvm-irqchip`` (removed in 3.0)
73 ''''''''''''''''''''''''''''''''''''
75 Use ``-machine kernel_irqchip=off`` instead.
77 ``-no-kvm-pit-reinjection`` (removed in 3.0)
78 ''''''''''''''''''''''''''''''''''''''''''''
80 Use ``-global kvm-pit.lost_tick_policy=discard`` instead.
82 ``-balloon`` (removed in 3.1)
83 '''''''''''''''''''''''''''''
85 The ``-balloon virtio`` option has been replaced by ``-device virtio-balloon``.
86 The ``-balloon none`` option was a no-op and has no replacement.
88 ``-bootp`` (removed in 3.1)
89 '''''''''''''''''''''''''''
91 The ``-bootp /some/file`` argument is replaced by either
92 ``-netdev user,id=x,bootp=/some/file`` (for pluggable NICs, accompanied with
93 ``-device ...,netdev=x``), or ``-nic user,bootp=/some/file`` (for on-board NICs).
94 The new syntax allows different settings to be provided per NIC.
96 ``-redir`` (removed in 3.1)
97 '''''''''''''''''''''''''''
99 The ``-redir [tcp|udp]:hostport:[guestaddr]:guestport`` option is replaced
100 by either ``-netdev
101 user,id=x,hostfwd=[tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport``
102 (for pluggable NICs, accompanied with ``-device ...,netdev=x``) or by the option
103 ``-nic user,hostfwd=[tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport``
104 (for on-board NICs). The new syntax allows different settings to be provided
105 per NIC.
107 ``-smb`` (removed in 3.1)
108 '''''''''''''''''''''''''
110 The ``-smb /some/dir`` argument is replaced by either
111 ``-netdev user,id=x,smb=/some/dir`` (for pluggable NICs, accompanied with
112 ``-device ...,netdev=x``), or ``-nic user,smb=/some/dir`` (for on-board NICs).
113 The new syntax allows different settings to be provided per NIC.
115 ``-tftp`` (removed in 3.1)
116 ''''''''''''''''''''''''''
118 The ``-tftp /some/dir`` argument is replaced by either
119 ``-netdev user,id=x,tftp=/some/dir`` (for pluggable NICs, accompanied with
120 ``-device ...,netdev=x``), or ``-nic user,tftp=/some/dir`` (for embedded NICs).
121 The new syntax allows different settings to be provided per NIC.
123 ``-localtime`` (removed in 3.1)
124 '''''''''''''''''''''''''''''''
126 Replaced by ``-rtc base=localtime``.
128 ``-nodefconfig`` (removed in 3.1)
129 '''''''''''''''''''''''''''''''''
131 Use ``-no-user-config`` instead.
133 ``-rtc-td-hack`` (removed in 3.1)
134 '''''''''''''''''''''''''''''''''
136 Use ``-rtc driftfix=slew`` instead.
138 ``-startdate`` (removed in 3.1)
139 '''''''''''''''''''''''''''''''
141 Replaced by ``-rtc base=date``.
143 ``-vnc ...,tls=...``, ``-vnc ...,x509=...`` & ``-vnc ...,x509verify=...``
144 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
146 The "tls-creds" option should be used instead to point to a "tls-creds-x509"
147 object created using "-object".
149 ``-net ...,name=...`` (removed in 5.1)
150 ''''''''''''''''''''''''''''''''''''''
152 The ``name`` parameter of the ``-net`` option was a synonym
153 for the ``id`` parameter, which should now be used instead.
155 ``-no-kvm`` (removed in 5.2)
156 ''''''''''''''''''''''''''''
158 The ``-no-kvm`` argument was a synonym for setting ``-machine accel=tcg``.
160 ``-realtime`` (removed in 6.0)
161 ''''''''''''''''''''''''''''''
163 The ``-realtime mlock=on|off`` argument has been replaced by the
164 ``-overcommit mem-lock=on|off`` argument.
166 ``-show-cursor`` option (removed in 6.0)
167 ''''''''''''''''''''''''''''''''''''''''
169 Use ``-display sdl,show-cursor=on``, ``-display gtk,show-cursor=on``
170 or ``-display default,show-cursor=on`` instead.
172 ``-tb-size`` option (removed in 6.0)
173 ''''''''''''''''''''''''''''''''''''
175 QEMU 5.0 introduced an alternative syntax to specify the size of the translation
176 block cache, ``-accel tcg,tb-size=``.
178 ``-usbdevice audio`` (removed in 6.0)
179 '''''''''''''''''''''''''''''''''''''
181 This option lacked the possibility to specify an audio backend device.
182 Use ``-device usb-audio`` now instead (and specify a corresponding USB
183 host controller or ``-usb`` if necessary).
185 ``-vnc acl`` (removed in 6.0)
186 '''''''''''''''''''''''''''''
188 The ``acl`` option to the ``-vnc`` argument has been replaced
189 by the ``tls-authz`` and ``sasl-authz`` options.
191 ``-mon ...,control=readline,pretty=on|off`` (removed in 6.0)
192 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
194 The ``pretty=on|off`` switch has no effect for HMP monitors and
195 its use is rejected.
197 ``-drive file=json:{...{'driver':'file'}}`` (removed 6.0)
198 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''
200 The 'file' driver for drives is no longer appropriate for character or host
201 devices and will only accept regular files (S_IFREG). The correct driver
202 for these file types is 'host_cdrom' or 'host_device' as appropriate.
204 Floppy controllers' drive properties (removed in 6.0)
205 '''''''''''''''''''''''''''''''''''''''''''''''''''''
207 Use ``-device floppy,...`` instead.  When configuring onboard floppy
208 controllers
211     -global isa-fdc.driveA=...
212     -global sysbus-fdc.driveA=...
213     -global SUNW,fdtwo.drive=...
215 become
218     -device floppy,unit=0,drive=...
223     -global isa-fdc.driveB=...
224     -global sysbus-fdc.driveB=...
226 become
229     -device floppy,unit=1,drive=...
231 When plugging in a floppy controller
234     -device isa-fdc,...,driveA=...
236 becomes
239     -device isa-fdc,...
240     -device floppy,unit=0,drive=...
245     -device isa-fdc,...,driveB=...
247 becomes
250     -device isa-fdc,...
251     -device floppy,unit=1,drive=...
253 ``-drive`` with bogus interface type (removed in 6.0)
254 '''''''''''''''''''''''''''''''''''''''''''''''''''''
256 Drives with interface types other than ``if=none`` are for onboard
257 devices.  Drives the board doesn't pick up can no longer be used with
258 -device.  Use ``if=none`` instead.
260 ``-usbdevice ccid`` (removed in 6.0)
261 '''''''''''''''''''''''''''''''''''''
263 This option was undocumented and not used in the field.
264 Use ``-device usb-ccid`` instead.
266 RISC-V firmware not booted by default (removed in 5.1)
267 ''''''''''''''''''''''''''''''''''''''''''''''''''''''
269 QEMU 5.1 changes the default behaviour from ``-bios none`` to ``-bios default``
270 for the RISC-V ``virt`` machine and ``sifive_u`` machine.
272 QEMU Machine Protocol (QMP) commands
273 ------------------------------------
275 ``block-dirty-bitmap-add`` "autoload" parameter (removed in 4.2.0)
276 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
278 The "autoload" parameter has been ignored since 2.12.0. All bitmaps
279 are automatically loaded from qcow2 images.
281 ``cpu-add`` (removed in 5.2)
282 ''''''''''''''''''''''''''''
284 Use ``device_add`` for hotplugging vCPUs instead of ``cpu-add``.  See
285 documentation of ``query-hotpluggable-cpus`` for additional details.
287 ``change`` (removed in 6.0)
288 '''''''''''''''''''''''''''
290 Use ``blockdev-change-medium`` or ``change-vnc-password`` instead.
292 ``query-events`` (removed in 6.0)
293 '''''''''''''''''''''''''''''''''
295 The ``query-events`` command has been superseded by the more powerful
296 and accurate ``query-qmp-schema`` command.
298 ``migrate_set_cache_size`` and ``query-migrate-cache-size`` (removed in 6.0)
299 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
301 Use ``migrate_set_parameter`` and ``info migrate_parameters`` instead.
303 ``migrate_set_downtime`` and ``migrate_set_speed`` (removed in 6.0)
304 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
306 Use ``migrate_set_parameter`` instead.
308 ``query-cpus`` (removed in 6.0)
309 '''''''''''''''''''''''''''''''
311 The ``query-cpus`` command is replaced by the ``query-cpus-fast`` command.
313 ``query-cpus-fast`` ``arch`` output member (removed in 6.0)
314 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
316 The ``arch`` output member of the ``query-cpus-fast`` command is
317 replaced by the ``target`` output member.
319 chardev client socket with ``wait`` option (removed in 6.0)
320 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
322 Character devices creating sockets in client mode should not specify
323 the 'wait' field, which is only applicable to sockets in server mode
325 ``query-named-block-nodes`` result ``encryption_key_missing`` (removed in 6.0)
326 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
328 Removed with no replacement.
330 ``query-block`` result ``inserted.encryption_key_missing`` (removed in 6.0)
331 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
333 Removed with no replacement.
335 ``query-named-block-nodes`` and ``query-block`` result dirty-bitmaps[i].status (removed in 6.0)
336 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
338 The ``status`` field of the ``BlockDirtyInfo`` structure, returned by
339 these commands is removed. Two new boolean fields, ``recording`` and
340 ``busy`` effectively replace it.
342 ``query-block`` result field ``dirty-bitmaps`` (removed in 6.0)
343 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
345 The ``dirty-bitmaps`` field of the ``BlockInfo`` structure, returned by
346 the query-block command is itself now removed. The ``dirty-bitmaps``
347 field of the ``BlockDeviceInfo`` struct should be used instead, which is the
348 type of the ``inserted`` field in query-block replies, as well as the
349 type of array items in query-named-block-nodes.
351 ``object-add`` option ``props`` (removed in 6.0)
352 ''''''''''''''''''''''''''''''''''''''''''''''''
354 Specify the properties for the object as top-level arguments instead.
356 Human Monitor Protocol (HMP) commands
357 -------------------------------------
359 The ``hub_id`` parameter of ``hostfwd_add`` / ``hostfwd_remove`` (removed in 5.0)
360 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
362 The ``[hub_id name]`` parameter tuple of the 'hostfwd_add' and
363 'hostfwd_remove' HMP commands has been replaced by ``netdev_id``.
365 ``cpu-add`` (removed in 5.2)
366 ''''''''''''''''''''''''''''
368 Use ``device_add`` for hotplugging vCPUs instead of ``cpu-add``.  See
369 documentation of ``query-hotpluggable-cpus`` for additional details.
371 ``change vnc TARGET`` (removed in 6.0)
372 ''''''''''''''''''''''''''''''''''''''
374 No replacement.  The ``change vnc password`` and ``change DEVICE MEDIUM``
375 commands are not affected.
377 ``acl_show``, ``acl_reset``, ``acl_policy``, ``acl_add``, ``acl_remove`` (removed in 6.0)
378 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
380 The ``acl_show``, ``acl_reset``, ``acl_policy``, ``acl_add``, and
381 ``acl_remove`` commands were removed with no replacement. Authorization
382 for VNC should be performed using the pluggable QAuthZ objects.
384 ``migrate-set-cache-size`` and ``info migrate-cache-size`` (removed in 6.0)
385 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
387 Use ``migrate-set-parameters`` and ``info migrate-parameters`` instead.
389 ``migrate_set_downtime`` and ``migrate_set_speed`` (removed in 6.0)
390 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
392 Use ``migrate-set-parameters`` instead.
394 ``info cpustats`` (removed in 6.1)
395 ''''''''''''''''''''''''''''''''''
397 This command didn't produce any output already. Removed with no replacement.
399 Guest Emulator ISAs
400 -------------------
402 RISC-V ISA privilege specification version 1.09.1 (removed in 5.1)
403 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
405 The RISC-V ISA privilege specification version 1.09.1 has been removed.
406 QEMU supports both the newer version 1.10.0 and the ratified version 1.11.0, these
407 should be used instead of the 1.09.1 version.
409 System emulator CPUS
410 --------------------
412 KVM guest support on 32-bit Arm hosts (removed in 5.2)
413 ''''''''''''''''''''''''''''''''''''''''''''''''''''''
415 The Linux kernel has dropped support for allowing 32-bit Arm systems
416 to host KVM guests as of the 5.7 kernel. Accordingly, QEMU is deprecating
417 its support for this configuration and will remove it in a future version.
418 Running 32-bit guests on a 64-bit Arm host remains supported.
420 RISC-V ISA Specific CPUs (removed in 5.1)
421 '''''''''''''''''''''''''''''''''''''''''
423 The RISC-V cpus with the ISA version in the CPU name have been removed. The
424 four CPUs are: ``rv32gcsu-v1.9.1``, ``rv32gcsu-v1.10.0``, ``rv64gcsu-v1.9.1`` and
425 ``rv64gcsu-v1.10.0``. Instead the version can be specified via the CPU ``priv_spec``
426 option when using the ``rv32`` or ``rv64`` CPUs.
428 RISC-V no MMU CPUs (removed in 5.1)
429 '''''''''''''''''''''''''''''''''''
431 The RISC-V no MMU cpus have been removed. The two CPUs: ``rv32imacu-nommu`` and
432 ``rv64imacu-nommu`` can no longer be used. Instead the MMU status can be specified
433 via the CPU ``mmu`` option when using the ``rv32`` or ``rv64`` CPUs.
435 ``compat`` property of server class POWER CPUs (removed in 6.0)
436 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
438 The ``max-cpu-compat`` property of the ``pseries`` machine type should be used
439 instead.
441 ``moxie`` CPU (removed in 6.1)
442 ''''''''''''''''''''''''''''''
444 Nobody was using this CPU emulation in QEMU, and there were no test images
445 available to make sure that the code is still working, so it has been removed
446 without replacement.
448 ``lm32`` CPUs (removed in 6.1.0)
449 ''''''''''''''''''''''''''''''''
451 The only public user of this architecture was the milkymist project,
452 which has been dead for years; there was never an upstream Linux
453 port.  Removed without replacement.
455 ``unicore32`` CPUs (since 6.1.0)
456 ''''''''''''''''''''''''''''''''
458 Support for this CPU was removed from the upstream Linux kernel, and
459 there is no available upstream toolchain to build binaries for it.
460 Removed without replacement.
462 System emulator machines
463 ------------------------
465 ``spike_v1.9.1`` and ``spike_v1.10`` (removed in 5.1)
466 '''''''''''''''''''''''''''''''''''''''''''''''''''''
468 The version specific Spike machines have been removed in favour of the
469 generic ``spike`` machine. If you need to specify an older version of the RISC-V
470 spec you can use the ``-cpu rv64gcsu,priv_spec=v1.10.0`` command line argument.
472 mips ``r4k`` platform (removed in 5.2)
473 ''''''''''''''''''''''''''''''''''''''
475 This machine type was very old and unmaintained. Users should use the ``malta``
476 machine type instead.
478 mips ``fulong2e`` machine alias (removed in 6.0)
479 ''''''''''''''''''''''''''''''''''''''''''''''''
481 This machine has been renamed ``fuloong2e``.
483 ``pc-1.0``, ``pc-1.1``, ``pc-1.2`` and ``pc-1.3`` (removed in 6.0)
484 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
486 These machine types were very old and likely could not be used for live
487 migration from old QEMU versions anymore. Use a newer machine type instead.
490 linux-user mode CPUs
491 --------------------
493 ``tilegx`` CPUs (removed in 6.0)
494 ''''''''''''''''''''''''''''''''
496 The ``tilegx`` guest CPU support has been removed without replacement. It was
497 only implemented in linux-user mode, but support for this CPU was removed from
498 the upstream Linux kernel in 2018, and it has also been dropped from glibc, so
499 there is no new Linux development taking place with this architecture. For
500 running the old binaries, you can use older versions of QEMU.
502 System emulator devices
503 -----------------------
505 ``ide-drive`` (removed in 6.0)
506 ''''''''''''''''''''''''''''''
508 The 'ide-drive' device has been removed. Users should use 'ide-hd' or
509 'ide-cd' as appropriate to get an IDE hard disk or CD-ROM as needed.
511 ``scsi-disk`` (removed in 6.0)
512 ''''''''''''''''''''''''''''''
514 The 'scsi-disk' device has been removed. Users should use 'scsi-hd' or
515 'scsi-cd' as appropriate to get a SCSI hard disk or CD-ROM as needed.
517 Related binaries
518 ----------------
520 ``qemu-nbd --partition`` (removed in 5.0)
521 '''''''''''''''''''''''''''''''''''''''''
523 The ``qemu-nbd --partition $digit`` code (also spelled ``-P``)
524 could only handle MBR partitions, and never correctly handled logical
525 partitions beyond partition 5.  Exporting a partition can still be
526 done by utilizing the ``--image-opts`` option with a raw blockdev
527 using the ``offset`` and ``size`` parameters layered on top of
528 any other existing blockdev. For example, if partition 1 is 100MiB
529 long starting at 1MiB, the old command::
531   qemu-nbd -t -P 1 -f qcow2 file.qcow2
533 can be rewritten as::
535   qemu-nbd -t --image-opts driver=raw,offset=1M,size=100M,file.driver=qcow2,file.file.driver=file,file.file.filename=file.qcow2
537 ``qemu-img convert -n -o`` (removed in 5.1)
538 '''''''''''''''''''''''''''''''''''''''''''
540 All options specified in ``-o`` are image creation options, so
541 they are now rejected when used with ``-n`` to skip image creation.
544 ``qemu-img create -b bad file $size`` (removed in 5.1)
545 ''''''''''''''''''''''''''''''''''''''''''''''''''''''
547 When creating an image with a backing file that could not be opened,
548 ``qemu-img create`` used to issue a warning about the failure but
549 proceed with the image creation if an explicit size was provided.
550 However, as the ``-u`` option exists for this purpose, it is safer to
551 enforce that any failure to open the backing image (including if the
552 backing file is missing or an incorrect format was specified) is an
553 error when ``-u`` is not used.
555 Command line options
556 --------------------
558 ``-smp`` (invalid topologies) (removed 5.2)
559 '''''''''''''''''''''''''''''''''''''''''''
561 CPU topology properties should describe whole machine topology including
562 possible CPUs.
564 However, historically it was possible to start QEMU with an incorrect topology
565 where *n* <= *sockets* * *cores* * *threads* < *maxcpus*,
566 which could lead to an incorrect topology enumeration by the guest.
567 Support for invalid topologies is removed, the user must ensure
568 topologies described with -smp include all possible cpus, i.e.
569 *sockets* * *cores* * *threads* = *maxcpus*.
571 ``-numa`` node (without memory specified) (removed 5.2)
572 '''''''''''''''''''''''''''''''''''''''''''''''''''''''
574 Splitting RAM by default between NUMA nodes had the same issues as ``mem``
575 parameter with the difference that the role of the user plays QEMU using
576 implicit generic or board specific splitting rule.
577 Use ``memdev`` with *memory-backend-ram* backend or ``mem`` (if
578 it's supported by used machine type) to define mapping explicitly instead.
579 Users of existing VMs, wishing to preserve the same RAM distribution, should
580 configure it explicitly using ``-numa node,memdev`` options. Current RAM
581 distribution can be retrieved using HMP command ``info numa`` and if separate
582 memory devices (pc|nv-dimm) are present use ``info memory-device`` and subtract
583 device memory from output of ``info numa``.
585 ``-numa node,mem=``\ *size* (removed in 5.1)
586 ''''''''''''''''''''''''''''''''''''''''''''
588 The parameter ``mem`` of ``-numa node`` was used to assign a part of
589 guest RAM to a NUMA node. But when using it, it's impossible to manage a specified
590 RAM chunk on the host side (like bind it to a host node, setting bind policy, ...),
591 so the guest ends up with the fake NUMA configuration with suboptiomal performance.
592 However since 2014 there is an alternative way to assign RAM to a NUMA node
593 using parameter ``memdev``, which does the same as ``mem`` and adds
594 means to actually manage node RAM on the host side. Use parameter ``memdev``
595 with *memory-backend-ram* backend as replacement for parameter ``mem``
596 to achieve the same fake NUMA effect or a properly configured
597 *memory-backend-file* backend to actually benefit from NUMA configuration.
598 New machine versions (since 5.1) will not accept the option but it will still
599 work with old machine types. User can check the QAPI schema to see if the legacy
600 option is supported by looking at MachineInfo::numa-mem-supported property.
602 ``-mem-path`` fallback to RAM (removed in 5.0)
603 ''''''''''''''''''''''''''''''''''''''''''''''
605 If guest RAM allocation from file pointed by ``mem-path`` failed,
606 QEMU was falling back to allocating from RAM, which might have resulted
607 in unpredictable behavior since the backing file specified by the user
608 as ignored. Currently, users are responsible for making sure the backing storage
609 specified with ``-mem-path`` can actually provide the guest RAM configured with
610 ``-m`` and QEMU fails to start up if RAM allocation is unsuccessful.
612 ``-smp`` (invalid topologies) (removed 5.2)
613 '''''''''''''''''''''''''''''''''''''''''''
615 CPU topology properties should describe whole machine topology including
616 possible CPUs.
618 However, historically it was possible to start QEMU with an incorrect topology
619 where *n* <= *sockets* * *cores* * *threads* < *maxcpus*,
620 which could lead to an incorrect topology enumeration by the guest.
621 Support for invalid topologies is removed, the user must ensure
622 topologies described with -smp include all possible cpus, i.e.
623 *sockets* * *cores* * *threads* = *maxcpus*.
625 ``-machine enforce-config-section=on|off`` (removed 5.2)
626 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''
628 The ``enforce-config-section`` property was replaced by the
629 ``-global migration.send-configuration={on|off}`` option.
631 qemu-img amend to adjust backing file (removed in 6.1)
632 ''''''''''''''''''''''''''''''''''''''''''''''''''''''
634 The use of ``qemu-img amend`` to modify the name or format of a qcow2
635 backing image was never fully documented or tested, and interferes
636 with other amend operations that need access to the original backing
637 image (such as deciding whether a v3 zero cluster may be left
638 unallocated when converting to a v2 image).  Any changes to the
639 backing chain should be performed with ``qemu-img rebase -u`` either
640 before or after the remaining changes being performed by amend, as
641 appropriate.
643 qemu-img backing file without format (removed in 6.1)
644 '''''''''''''''''''''''''''''''''''''''''''''''''''''
646 The use of ``qemu-img create``, ``qemu-img rebase``, or ``qemu-img
647 convert`` to create or modify an image that depends on a backing file
648 now requires that an explicit backing format be provided.  This is
649 for safety: if QEMU probes a different format than what you thought,
650 the data presented to the guest will be corrupt; similarly, presenting
651 a raw image to a guest allows a potential security exploit if a future
652 probe sees a non-raw image based on guest writes.
654 To avoid creating unsafe backing chains, you must pass ``-o
655 backing_fmt=`` (or the shorthand ``-F`` during create) to specify the
656 intended backing format.  You may use ``qemu-img rebase -u`` to
657 retroactively add a backing format to an existing image.  However, be
658 aware that there are already potential security risks to blindly using
659 ``qemu-img info`` to probe the format of an untrusted backing image,
660 when deciding what format to add into an existing image.
662 Block devices
663 -------------
665 VXHS backend (removed in 5.1)
666 '''''''''''''''''''''''''''''
668 The VXHS code did not compile since v2.12.0. It was removed in 5.1.
670 ``sheepdog`` driver (removed in 6.0)
671 ''''''''''''''''''''''''''''''''''''
673 The corresponding upstream server project is no longer maintained.
674 Users are recommended to switch to an alternative distributed block
675 device driver such as RBD.