mirror of https://github.com/xemu-project/xemu.git
hw/mem/pc-dimm: Print slot number on error at pc_dimm_pre_plug()
The error report in pc_dimm_pre_plug() now has the slot number printed. Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com> Message-Id: <20200310180510.19489-2-wainersm@redhat.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
4b4d96c776
commit
f4eaf69e45
|
@ -44,8 +44,8 @@ void pc_dimm_pre_plug(PCDIMMDevice *dimm, MachineState *machine,
|
||||||
&error_abort);
|
&error_abort);
|
||||||
if ((slot < 0 || slot >= machine->ram_slots) &&
|
if ((slot < 0 || slot >= machine->ram_slots) &&
|
||||||
slot != PC_DIMM_UNASSIGNED_SLOT) {
|
slot != PC_DIMM_UNASSIGNED_SLOT) {
|
||||||
error_setg(&local_err, "invalid slot number, valid range is [0-%"
|
error_setg(&local_err, "invalid slot number %d, valid range is [0-%"
|
||||||
PRIu64 "]", machine->ram_slots - 1);
|
PRIu64 "]", slot, machine->ram_slots - 1);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue