Re: [PATCH v2] qdev: Report an error for machine without HotplugHandler

2024-02-17 Thread Akihiko Odaki
On 2023/12/20 16:53, Markus Armbruster wrote: Akihiko Odaki writes: On 2023/12/18 23:02, Markus Armbruster wrote: Akihiko Odaki writes: On 2023/12/11 15:51, Markus Armbruster wrote: Akihiko Odaki writes: The HotplugHandler of the machine will be used when the parent bus does not exist,

Re: [PATCH v2] qdev: Report an error for machine without HotplugHandler

2023-12-21 Thread Akihiko Odaki
On 2023/12/21 17:49, Markus Armbruster wrote: Akihiko Odaki writes: On 2023/12/21 1:46, Zhao Liu wrote: Hi Markus, On Wed, Dec 20, 2023 at 08:53:21AM +0100, Markus Armbruster wrote: Date: Wed, 20 Dec 2023 08:53:21 +0100 From: Markus Armbruster Subject: Re: [PATCH v2] qdev: Report an error

Re: [PATCH v2] qdev: Report an error for machine without HotplugHandler

2023-12-21 Thread Markus Armbruster
Akihiko Odaki writes: > On 2023/12/21 1:46, Zhao Liu wrote: >> Hi Markus, >> On Wed, Dec 20, 2023 at 08:53:21AM +0100, Markus Armbruster wrote: >>> Date: Wed, 20 Dec 2023 08:53:21 +0100 >>> From: Markus Armbruster >>> Subject: Re: [PATCH v2]

Re: [PATCH v2] qdev: Report an error for machine without HotplugHandler

2023-12-20 Thread Akihiko Odaki
On 2023/12/21 1:46, Zhao Liu wrote: Hi Markus, On Wed, Dec 20, 2023 at 08:53:21AM +0100, Markus Armbruster wrote: Date: Wed, 20 Dec 2023 08:53:21 +0100 From: Markus Armbruster Subject: Re: [PATCH v2] qdev: Report an error for machine without HotplugHandler Akihiko Odaki writes: On 2023

Re: [PATCH v2] qdev: Report an error for machine without HotplugHandler

2023-12-20 Thread Markus Armbruster
Zhao Liu writes: > Hi Markus, > > On Wed, Dec 20, 2023 at 08:53:21AM +0100, Markus Armbruster wrote: >> Date: Wed, 20 Dec 2023 08:53:21 +0100 >> From: Markus Armbruster >> Subject: Re: [PATCH v2] qdev: Report an error for machine without >> HotplugHandler >&

Re: [PATCH v2] qdev: Report an error for machine without HotplugHandler

2023-12-20 Thread Zhao Liu
Hi Markus, On Wed, Dec 20, 2023 at 08:53:21AM +0100, Markus Armbruster wrote: > Date: Wed, 20 Dec 2023 08:53:21 +0100 > From: Markus Armbruster > Subject: Re: [PATCH v2] qdev: Report an error for machine without > HotplugHandler > > Akihiko Odaki writes: > > >

Re: [PATCH v2] qdev: Report an error for machine without HotplugHandler

2023-12-19 Thread Markus Armbruster
Akihiko Odaki writes: > On 2023/12/18 23:02, Markus Armbruster wrote: >> Akihiko Odaki writes: >> >>> On 2023/12/11 15:51, Markus Armbruster wrote: Akihiko Odaki writes: > The HotplugHandler of the machine will be used when the parent bus does > not exist, but the machine may

Re: [PATCH v2] qdev: Report an error for machine without HotplugHandler

2023-12-19 Thread Akihiko Odaki
On 2023/12/18 23:02, Markus Armbruster wrote: Akihiko Odaki writes: On 2023/12/11 15:51, Markus Armbruster wrote: Akihiko Odaki writes: The HotplugHandler of the machine will be used when the parent bus does not exist, but the machine may not have one. Report an error in such a case instea

Re: [PATCH v2] qdev: Report an error for machine without HotplugHandler

2023-12-18 Thread Markus Armbruster
Akihiko Odaki writes: > On 2023/12/11 15:51, Markus Armbruster wrote: >> Akihiko Odaki writes: >> >>> The HotplugHandler of the machine will be used when the parent bus does >>> not exist, but the machine may not have one. Report an error in such a >>> case instead of aborting. >>> >>> Fixes: 7

Re: [PATCH v2] qdev: Report an error for machine without HotplugHandler

2023-12-13 Thread Akihiko Odaki
On 2023/12/11 15:51, Markus Armbruster wrote: Akihiko Odaki writes: The HotplugHandler of the machine will be used when the parent bus does not exist, but the machine may not have one. Report an error in such a case instead of aborting. Fixes: 7716b8ca74 ("qdev: HotplugHandler: Add support fo

Re: [PATCH v2] qdev: Report an error for machine without HotplugHandler

2023-12-10 Thread Markus Armbruster
Akihiko Odaki writes: > The HotplugHandler of the machine will be used when the parent bus does > not exist, but the machine may not have one. Report an error in such a > case instead of aborting. > > Fixes: 7716b8ca74 ("qdev: HotplugHandler: Add support for unplugging BUS-less > devices") > Sig

[PATCH v2] qdev: Report an error for machine without HotplugHandler

2023-12-09 Thread Akihiko Odaki
The HotplugHandler of the machine will be used when the parent bus does not exist, but the machine may not have one. Report an error in such a case instead of aborting. Fixes: 7716b8ca74 ("qdev: HotplugHandler: Add support for unplugging BUS-less devices") Signed-off-by: Akihiko Odaki --- Change