| Submitter | Michael Roth |
|---|---|
| Date | June 5, 2012, 1 a.m. |
| Message ID | <1338858018-17189-14-git-send-email-mdroth@linux.vnet.ibm.com> |
| Download | mbox | patch |
| Permalink | /patch/162990/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/mc146818rtc_state.h b/hw/mc146818rtc_state.h index 9347ee6..3085bed 100644 --- a/hw/mc146818rtc_state.h +++ b/hw/mc146818rtc_state.h @@ -20,8 +20,8 @@ qc_declaration typedef struct RTCState { /* second update */ int64_t next_second_time; uint16_t _derived irq_reinject_on_ack_count; - uint32_t irq_coalesced; - uint32_t period; + uint32_t _version(2) irq_coalesced; + uint32_t _version(2) period; QEMUTimer _broken *coalesced_timer; QEMUTimer *second_timer; QEMUTimer *second_timer2;
VMState relies on per-field versioning in some cases. We don't use this for serialization, but it is needed for proper generation of VMState field decriptions. Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com> --- hw/mc146818rtc_state.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)