Re: [Qemu-devel] [PATCH] hw/arm/digic: Mark device with user_creatable = false

2017-08-22 Thread Peter Maydell
On 22 August 2017 at 15:05, Thomas Huth wrote: > On 22.08.2017 15:52, Peter Maydell wrote: >> On 22 August 2017 at 14:15, Thomas Huth wrote: >>> QEMU currently hangs completely when the user is trying to do a >>> "device_add digic" on an unrelated ARM machine like integratorcp. >>> Looks like thi

Re: [Qemu-devel] [PATCH] hw/arm/digic: Mark device with user_creatable = false

2017-08-22 Thread Thomas Huth
On 22.08.2017 15:52, Peter Maydell wrote: > On 22 August 2017 at 14:15, Thomas Huth wrote: >> QEMU currently hangs completely when the user is trying to do a >> "device_add digic" on an unrelated ARM machine like integratorcp. >> Looks like this device is not meant to be hot-pluggable at all, so >

Re: [Qemu-devel] [PATCH] hw/arm/digic: Mark device with user_creatable = false

2017-08-22 Thread Thomas Huth
On 22.08.2017 16:07, Peter Maydell wrote: > On 22 August 2017 at 15:05, Thomas Huth wrote: >> On 22.08.2017 15:52, Peter Maydell wrote: >>> On 22 August 2017 at 14:15, Thomas Huth wrote: QEMU currently hangs completely when the user is trying to do a "device_add digic" on an unrelated A

Re: [Qemu-devel] [PATCH] hw/arm/digic: Mark device with user_creatable = false

2017-08-22 Thread Peter Maydell
On 22 August 2017 at 14:15, Thomas Huth wrote: > QEMU currently hangs completely when the user is trying to do a > "device_add digic" on an unrelated ARM machine like integratorcp. > Looks like this device is not meant to be hot-pluggable at all, so > let's simply mark it with "user_creatable = fa

[Qemu-devel] [PATCH] hw/arm/digic: Mark device with user_creatable = false

2017-08-22 Thread Thomas Huth
QEMU currently hangs completely when the user is trying to do a "device_add digic" on an unrelated ARM machine like integratorcp. Looks like this device is not meant to be hot-pluggable at all, so let's simply mark it with "user_creatable = false" to avoid the hang. Signed-off-by: Thomas Huth ---