[Qemu-devel] [patch 3/3] mc146818rtc: add "rtc" link to "/machine"

2014-06-04 Thread mtosatti
Add a link to rtc under /machine providing a stable location for management apps to query "date" field. {"execute":"qom-get","arguments":{"path":"/machine/rtc","property":"date"} } Suggested by Paolo Bonzini. Signed-off-by: Marcelo Tosatti --- hw/timer/mc146818rtc.c |9 + 1 file

[Qemu-devel] [patch 3/3] mc146818rtc: add "rtc" link to "/machine"

2014-06-02 Thread mtosatti
Add a link to rtc under /machine providing a stable location for management apps to query "date" field. {"execute":"qom-get","arguments":{"path":"/machine/rtc","property":"date"} } Suggested by Paolo Bonzini. Signed-off-by: Marcelo Tosatti Index: qemu/hw/timer/mc146818rtc.c ==

Re: [Qemu-devel] [patch 3/3] mc146818rtc: add "rtc" link to "/machine" (v2)

2014-05-30 Thread Eric Blake
On 05/30/2014 03:59 PM, Marcelo Tosatti wrote: Your subject line is harder than necessary. 'git am' would put the "(v2)" suffix into qemu.git (it only strips the [...] prefix). The proper way to generate a v2 is with 'git send-email -v2', which produces [PATCH v2] as the subject line prefix. >

[Qemu-devel] [patch 3/3] mc146818rtc: add "rtc" link to "/machine" (v2)

2014-05-30 Thread Marcelo Tosatti
v2: - fix changelog to mention "machine" not "machines - remove TARGET_I386 ifdef - Add a link to rtc under /machine providing a stable location for management apps to query "date" field. {"execute":"qom-get","arguments":{"path":"/machine/rtc","property":"date"}} Suggeste