You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a bug in the RTC implementation by which we are not setting the correct value to the Load Register (LR). This register is suppose to be initialized with the time elapsed since the UNIX Epoch, otherwise the guest will have the time set to 1970.
The text was updated successfully, but these errors were encountered:
The load register needs to be initialized to the unix epoch time.
Otherwise, if we initialize it to 0, the guest will always see the time
as in the year 1970.
Fixes: rust-vmm#47
Signed-off-by: Andreea Florescu <fandree@amazon.com>
The load register needs to be initialized to the unix epoch time.
Otherwise, if we initialize it to 0, the guest will always see the time
as in the year 1970.
Fixes: rust-vmm#47
Signed-off-by: Andreea Florescu <fandree@amazon.com>
The data register is the register that is telling the RTC time.
Before we were initializing this to 0, which meant that in a VMM the
guest would always see the time as it was 1970s (corresponding to UTC
0).
Fixes: rust-vmm#47
Signed-off-by: Andreea Florescu <fandree@amazon.com>
The data register is the register that is telling the RTC time.
Before we were initializing this to 0, which meant that in a VMM the
guest would always see the time as it was 1970s (corresponding to UTC
0).
Fixes: rust-vmm#47
Signed-off-by: Andreea Florescu <fandree@amazon.com>
We have a bug in the RTC implementation by which we are not setting the correct value to the Load Register (LR). This register is suppose to be initialized with the time elapsed since the UNIX Epoch, otherwise the guest will have the time set to 1970.
The text was updated successfully, but these errors were encountered: