Home
last modified time | relevance | path

Searched refs:error_setg (Results 126 – 150 of 766) sorted by relevance

12345678910>>...31

/openbmc/qemu/util/
H A Dqemu-config.c26 error_setg(errp, "There is no option group '%s'", group); in find_list()
250 error_setg(errp, "invalid option name: %s", option); in qmp_query_command_line_options()
343 error_setg(errp, "no group defined"); in qemu_config_foreach()
349 error_setg(errp, "parse error"); in qemu_config_foreach()
429 error_setg(errp, "Unknown option '%s' for [%s]", in config_parse_qdict_section()
444 error_setg(errp, "Unused option '%s' for [%s]", in config_parse_qdict_section()
454 error_setg(errp, "[%s] section (index %u) does not consist of " in config_parse_qdict_section()
472 error_setg(errp, "[%s] section doesn't support the option '%s'", in config_parse_qdict_section()
H A Dfilemonitor-stub.c30 error_setg(errp, "File monitoring not available on this platform"); in qemu_file_monitor_new()
49 error_setg(errp, "File monitoring not available on this platform"); in qemu_file_monitor_add_watch()
H A Ddbus.c37 error_setg(errp, "Failed to create DBus proxy: %s", err->message); in qemu_dbus_get_queued_owners()
51 error_setg(errp, "Failed to call ListQueuedOwners: %s", err->message); in qemu_dbus_get_queued_owners()
/openbmc/qemu/net/
H A Dnet.c96 error_setg(errp, "host address '%s' is not a valid " in convert_host_port()
110 error_setg(errp, "port number '%s' is invalid", port); in convert_host_port()
125 error_setg(errp, "host address '%s' doesn't contain ':' " in parse_host_port()
1035 error_setg(errp, "too many NICs"); in net_init_nic()
1063 error_setg(errp, "invalid syntax for ethernet address"); in net_init_nic()
1068 error_setg(errp, in net_init_nic()
1170 error_setg(errp, "Duplicate ID '%s'", netdev->id); in net_client_init1()
1265 error_setg(errp, in net_client_init()
1321 error_setg(errp, "Device '%s' is not a netdev", id); in qmp_netdev_del()
1412 error_setg(errp, "net client(%s) doesn't support" in qmp_query_rx_filter()
[all …]
/openbmc/qemu/crypto/
H A Drsakey-builtin.c.inc30 error_setg(errp, "Empty mpi field");
43 error_setg(errp, "Invalid rsakey version");
55 error_setg(errp, "Empty sequence");
91 error_setg(errp, "Invalid RSA public key");
170 error_setg(errp, "Invalid RSA private key");
193 error_setg(errp, "Unknown key type: %d", type);
H A Dsecret.c46 error_setg(errp, in qcrypto_secret_load_data()
51 error_setg(errp, in qcrypto_secret_load_data()
63 error_setg(errp, "Either 'file' or 'data' must be provided"); in qcrypto_secret_load_data()
H A Dtlscredsanon.c54 error_setg(errp, "Cannot allocate credentials: %s", in qcrypto_tls_creds_anon_load()
70 error_setg(errp, "Cannot allocate credentials: %s", in qcrypto_tls_creds_anon_load()
107 error_setg(errp, "TLS credentials support requires GNUTLS"); in qcrypto_tls_creds_anon_load()
H A Dcipher-builtin.c.inc41 error_setg(errp, "Length %zu must be a multiple of block size %zu",
57 error_setg(errp, "Setting IV is not supported");
201 error_setg(errp, "IV must be %d bytes not %zu",
277 error_setg(errp, "Failed to set encryption key");
281 error_setg(errp, "Failed to set decryption key");
293 error_setg(errp,
300 error_setg(errp, "Unsupported cipher mode %s",
/openbmc/qemu/qom/
H A Dobject_interfaces.c87 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "id", "an identifier"); in user_creatable_add_type()
95 error_setg(errp, "invalid object type: %s", type); in user_creatable_add_type()
100 error_setg(errp, "object type '%s' isn't supported by object-add", in user_creatable_add_type()
106 error_setg(errp, "object type '%s' is abstract", type); in user_creatable_add_type()
330 error_setg(errp, "object '%s' not found", id); in user_creatable_del()
335 error_setg(errp, "object '%s' is in use, can not be deleted", id); in user_creatable_del()
/openbmc/qemu/block/
H A Dqcow.c146 error_setg(errp, "Image not in qcow format"); in qcow_open()
167 error_setg(errp, "Cluster size must be between 512 and 64k"); in qcow_open()
175 error_setg(errp, "L2 table size must be between 512 and 64k"); in qcow_open()
184 error_setg(errp, in qcow_open()
197 error_setg(errp, in qcow_open()
243 error_setg(errp, "Image too large"); in qcow_open()
249 error_setg(errp, "Image too large"); in qcow_open()
259 error_setg(errp, "Could not allocate memory for L1 table"); in qcow_open()
279 error_setg(errp, "Could not allocate L2 table cache"); in qcow_open()
291 error_setg(errp, "Backing file name too long"); in qcow_open()
[all …]
/openbmc/qemu/hw/ide/
H A Dqdev.c100 error_setg(errp, "Can't create IDE unit %d, bus supports only %d units", in ide_qdev_realize()
108 error_setg(errp, "IDE unit %d is in use", dev->unit); in ide_qdev_realize()
115 error_setg(errp, "IDE unit %d is in use", dev->unit); in ide_qdev_realize()
121 error_setg(errp, "Invalid IDE unit %d", dev->unit); in ide_qdev_realize()
173 error_setg(errp, "No drive specified"); in ide_dev_initfn()
187 error_setg(errp, "discard_granularity must be 512 for ide"); in ide_dev_initfn()
196 error_setg(errp, "logical_block_size must be 512 for IDE"); in ide_dev_initfn()
/openbmc/qemu/target/s390x/
H A Dcpu_models_sysemu.c114 error_setg(errp, QERR_INVALID_PARAMETER_TYPE, "props", "dict"); in cpu_model_from_info()
121 error_setg(errp, "The CPU definition \'%s\' is unknown.", info->name); in cpu_model_from_info()
125 error_setg(errp, "The CPU definition '%s' requires KVM", info->name); in cpu_model_from_info()
132 error_setg(errp, "Details about the host CPU model are not available, " in cpu_model_from_info()
235 error_setg(errp, "The requested expansion type is not supported."); in qmp_query_cpu_model_expansion()
380 error_setg(errp, "No compatible CPU model could be created as" in qmp_query_cpu_model_baseline()
407 error_setg(errp, "Mixed CPU models are not supported on s390x."); in apply_cpu_model()
/openbmc/qemu/hw/virtio/
H A Dvhost-user-fs.c199 error_setg(errp, "missing chardev"); in vuf_device_realize()
204 error_setg(errp, "missing tag property"); in vuf_device_realize()
209 error_setg(errp, "tag property cannot be empty"); in vuf_device_realize()
213 error_setg(errp, "tag property must be %zu bytes or less", in vuf_device_realize()
219 error_setg(errp, "num-request-queues property must be larger than 0"); in vuf_device_realize()
224 error_setg(errp, "queue-size property must be a power of 2"); in vuf_device_realize()
229 error_setg(errp, "queue-size property must be %u or smaller", in vuf_device_realize()
H A Dvirtio-md-pci.c32 error_setg(errp, "hotplug of virtio based memory devices not supported" in virtio_md_pci_pre_plug()
79 error_setg(errp, "this virtio based memory devices cannot be unplugged"); in virtio_md_pci_unplug_request()
84 error_setg(errp, "hotunplug of virtio based memory devices not" in virtio_md_pci_unplug_request()
/openbmc/qemu/
H A Dblock.c299 error_setg(errp, "Node '%s' is read only", in bdrv_can_set_read_only()
1267 error_setg(&parent->backing_blocker, in bdrv_backing_attach()
1608 error_setg(errp, "Node name too long"); in bdrv_assign_node_name()
1881 error_setg(errp, in bdrv_open_common()
1926 error_setg(errp, in bdrv_open_common()
3465 error_setg(errp, "Node corrupted"); in bdrv_set_file_or_backing_noperm()
4207 error_setg(errp, in bdrv_open_inherit()
5686 error_setg(errp, "driver is not specified"); in bdrv_insert_node()
7494 error_setg(&local_err, in bdrv_img_create()
7515 error_setg(&local_err, in bdrv_img_create()
[all …]
/openbmc/qemu/hw/misc/
H A Divshmem.c436 error_setg(errp, "kvm_irqchip_add_msi_route failed"); in ivshmem_add_kvm_msi_virq()
514 error_setg(errp, "invalid peer %d", posn); in process_msg_disconnect()
557 error_setg(errp, "server sent invalid message %" PRId64, msg); in process_msg()
650 error_setg(errp, "server sent invalid version message"); in ivshmem_recv_setup()
673 error_setg(errp, "server sent invalid ID message"); in ivshmem_recv_setup()
844 error_setg(errp, "ioeventfd/irqfd requires MSI"); in ivshmem_common_realize()
885 error_setg(errp, in ivshmem_common_realize()
904 error_setg(&s->migration_blocker, in ivshmem_common_realize()
1038 error_setg(errp, "You must specify a 'memdev'"); in ivshmem_plain_realize()
1041 error_setg(errp, "can't use already busy memdev: %s", in ivshmem_plain_realize()
[all …]
/openbmc/qemu/hw/i386/
H A Dx86.c237 error_setg(errp, "CPU hot unplug not supported without ACPI"); in x86_cpu_unplug_request_cb()
244 error_setg(errp, "Boot CPU is unpluggable"); in x86_cpu_unplug_request_cb()
294 error_setg(errp, "Invalid CPU type, expected cpu type: '%s'", in x86_cpu_pre_plug()
331 error_setg(errp, "CPU socket-id is not set"); in x86_cpu_pre_plug()
339 error_setg(errp, "CPU die-id is not set"); in x86_cpu_pre_plug()
347 error_setg(errp, "CPU core-id is not set"); in x86_cpu_pre_plug()
355 error_setg(errp, "CPU thread-id is not set"); in x86_cpu_pre_plug()
373 error_setg(errp, in x86_cpu_pre_plug()
382 error_setg(errp, "CPU[%d] with APIC ID %" PRIu32 " exists", in x86_cpu_pre_plug()
1319 error_setg(errp, in x86_machine_set_oem_id()
[all …]
H A Dsgx-epc.c62 error_setg(errp, "'" TYPE_SGX_EPC "' can't be created after vCPUs," in sgx_epc_realize()
68 error_setg(errp, "'" SGX_EPC_MEMDEV_PROP "' property is not set"); in sgx_epc_realize()
74 error_setg(errp, "can't use already busy memdev: %s", path); in sgx_epc_realize()
126 error_setg(errp, "'" SGX_EPC_MEMDEV_PROP "' property must be set"); in sgx_epc_md_get_memory_region()
/openbmc/qemu/target/riscv/
H A Driscv-qmp-cmds.c74 error_setg(errp, "'%s' CPU not available with %s", name, accel); in riscv_check_if_cpu_available()
156 error_setg(errp, "The requested expansion type is not supported"); in qmp_query_cpu_model_expansion()
162 error_setg(errp, "The CPU type '%s' is not a known RISC-V CPU type", in qmp_query_cpu_model_expansion()
170 error_setg(errp, QERR_INVALID_PARAMETER_TYPE, "props", "dict"); in qmp_query_cpu_model_expansion()
/openbmc/qemu/accel/tcg/
H A Dicount-common.c431 error_setg(errp, "Please specify shift option when using align"); in icount_configure()
437 error_setg(errp, "align=on and sleep=off are incompatible"); in icount_configure()
444 error_setg(errp, "icount: Invalid shift value"); in icount_configure()
448 error_setg(errp, "shift=auto and align=on are incompatible"); in icount_configure()
451 error_setg(errp, "shift=auto and sleep=off are incompatible"); in icount_configure()
/openbmc/qemu/migration/
H A Dcolo-failover.c48 error_setg(errp, "COLO failover is already activated"); in failover_request_active()
80 error_setg(errp, "VM is not in COLO mode"); in qmp_x_colo_lost_heartbeat()
/openbmc/qemu/hw/net/
H A Dxen_nic.c361 error_setg(errp, "failed to read tx-ring-ref"); in xen_netdev_connect()
367 error_setg(errp, "failed to read rx-ring-ref"); in xen_netdev_connect()
373 error_setg(errp, "failed to read event-channel"); in xen_netdev_connect()
382 error_setg(errp, "frontend doesn't support rx-copy"); in xen_netdev_connect()
527 error_setg(errp, "cannot read %s: %s", fe_path, in xen_netdev_get_name()
534 error_setg(errp, "cannot find device index for netdev device"); in xen_netdev_get_name()
608 error_setg(errp, "failed to parse name '%s'", name); in type_init()
616 error_setg(errp, "no MAC address found"); in type_init()
621 error_setg(errp, "failed to parse MAC address"); in type_init()
/openbmc/qemu/hw/ppc/
H A Dspapr_vof.c67 error_setg(errp, "Memory allocation for stack failed"); in spapr_vof_reset()
75 error_setg(errp, "Memory for kernel is in use"); in spapr_vof_reset()
81 error_setg(errp, "Memory for initramdisk is in use"); in spapr_vof_reset()
H A Dspapr_irq.c59 error_setg(errp, "can't find a free %d-IRQ block", num); in spapr_irq_msi_alloc()
176 error_setg(errp, "XIVE-only machines require a POWER9 CPU"); in spapr_irq_check()
190 error_setg(errp, in spapr_irq_check()
299 error_setg(errp, "kernel_irqchip split mode not supported on pseries"); in spapr_irq_init()
464 error_setg(errp, "Can't find node \"%s\": %s", in spapr_irq_get_phandle()
471 error_setg(errp, "Can't get phandle of node \"%s\"", nodename); in spapr_irq_get_phandle()
582 error_setg(errp, "can't find a free %d-IRQ block", num); in spapr_irq_find()
/openbmc/qemu/hw/pci-bridge/
H A Dpci_expander_bridge.c207 error_setg(errp, "Insufficient space for pxb cxl host register space"); in pxb_cxl_hook_up_registers()
247 error_setg(errp, "PXB devices can be attached only to root bus"); in pxb_register_bus()
253 error_setg(errp, "Bus %d is already in use", pxb_bus_num); in pxb_register_bus()
332 error_setg(errp, "NUMA is not supported by this machine-type"); in pxb_dev_realize_common()
338 error_setg(errp, "Illegal numa node %d", pxb->numa_node); in pxb_dev_realize_common()
396 error_setg(errp, "pxb devices cannot reside on a PCIe bus"); in pxb_dev_realize()
449 error_setg(errp, "pxb-pcie devices cannot reside on a PCI bus"); in pxb_pcie_dev_realize()
487 error_setg(errp, "pxb-cxl devices cannot reside on a PCI bus"); in pxb_cxl_dev_realize()

12345678910>>...31