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
While we can (for now?) assume an RTC device exists, it's possible the guest might have RTC_SYSTOHCT=y set instead, meaning we should be passing RTC_SYSTOHC_DEVICE to rtc_class_open()
The text was updated successfully, but these errors were encountered:
Related to #14, on some systems we can't find the RTC device due to the
kernel config not having CONFIG_RTC_HCTOSYS_DEVICE defined, so try
falling back to the alternative CONFIG_RTC_SYSTOHC_DEVICE.
Not sure yet how to handle this in general, so this is a short term fix.
For instance, the driver will still schedule the work function for
synchronizing the clock and respond to sync commands. Wasteful.
virtio_vmmci/virtio_vmmci.c
Line 145 in b2caad3
While we can (for now?) assume an RTC device exists, it's possible the guest might have
RTC_SYSTOHCT=y
set instead, meaning we should be passingRTC_SYSTOHC_DEVICE
tortc_class_open()
The text was updated successfully, but these errors were encountered: