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
KVM has a set of functions (sync_regs, sync_regs_mut, clear_sync_dirty_regs, clear_sync_valid_regs, set_sync_dirty_regs and set_sync_valid_regs) that cause synchronisation of registers without the need to call get/set regs, this improves performance as it means that extra ioctls are not required to retrieve or set registers.
We should replace get/set regs with the appropriate sync functions
The text was updated successfully, but these errors were encountered:
KVM has a set of functions (
sync_regs
,sync_regs_mut
,clear_sync_dirty_regs
,clear_sync_valid_regs
,set_sync_dirty_regs
andset_sync_valid_regs
) that cause synchronisation of registers without the need to call get/set regs, this improves performance as it means that extra ioctls are not required to retrieve or set registers.We should replace get/set regs with the appropriate sync functions
The text was updated successfully, but these errors were encountered: