Re: [PATCH 01/10] qapi: expose rtc-reset-reinjection command unconditionally

2025-05-13 Thread Markus Armbruster
Daniel P. Berrangé writes: > On Sat, May 10, 2025 at 11:57:10AM +0200, Markus Armbruster wrote: >> Daniel P. Berrangé writes: >> >> > This removes the TARGET_I386 condition from the rtc-reset-reinjection >> > command. This requires providing a QMP command stub for non-i386 target. >> > This in

Re: [PATCH 01/10] qapi: expose rtc-reset-reinjection command unconditionally

2025-05-12 Thread Pierrick Bouvier
On 5/12/25 5:54 PM, Pierrick Bouvier wrote: On 5/12/25 11:33 AM, Daniel P. Berrangé wrote: diff --git a/stubs/monitor-i386-rtc.c b/stubs/monitor-i386-rtc.c new file mode 100644 index 00..ee2e60d95b --- /dev/null +++ b/stubs/monitor-i386-rtc.c @@ -0,0 +1,10 @@ +/* SPDX-License-Identifier:

Re: [PATCH 01/10] qapi: expose rtc-reset-reinjection command unconditionally

2025-05-12 Thread Pierrick Bouvier
On 5/12/25 11:33 AM, Daniel P. Berrangé wrote: diff --git a/stubs/monitor-i386-rtc.c b/stubs/monitor-i386-rtc.c new file mode 100644 index 00..ee2e60d95b --- /dev/null +++ b/stubs/monitor-i386-rtc.c @@ -0,0 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#include "qemu/osdep.

Re: [PATCH 01/10] qapi: expose rtc-reset-reinjection command unconditionally

2025-05-12 Thread Daniel P . Berrangé
On Sat, May 10, 2025 at 11:57:10AM +0200, Markus Armbruster wrote: > Daniel P. Berrangé writes: > > > This removes the TARGET_I386 condition from the rtc-reset-reinjection > > command. This requires providing a QMP command stub for non-i386 target. > > This in turn requires moving the command out

Re: [PATCH 01/10] qapi: expose rtc-reset-reinjection command unconditionally

2025-05-10 Thread Markus Armbruster
Daniel P. Berrangé writes: > This removes the TARGET_I386 condition from the rtc-reset-reinjection > command. This requires providing a QMP command stub for non-i386 target. > This in turn requires moving the command out of misc-target.json, since > that will trigger symbol poisoning errors when

[PATCH 01/10] qapi: expose rtc-reset-reinjection command unconditionally

2025-05-08 Thread Daniel P . Berrangé
This removes the TARGET_I386 condition from the rtc-reset-reinjection command. This requires providing a QMP command stub for non-i386 target. This in turn requires moving the command out of misc-target.json, since that will trigger symbol poisoning errors when built from target independent code.