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
{{ message }}
This repository has been archived by the owner on Nov 21, 2017. It is now read-only.
When running in VirtualBox, over 90% of CPU cycles used during boot are spent finding an appropriate NIC/driver pair, specifically in iterating over all PCI devices for each supported vendor/device ID.
If the init_net code iterated over attached PCI devices in the outer loop, then over supported vendors/device IDs in the inner loop, the process would be much faster.
The text was updated successfully, but these errors were encountered:
Change init_net to search for an Ethernet device before comparing
against known supported devices.
Removed the os_pci_find_device function as it is no longer needed.
When running in VirtualBox, over 90% of CPU cycles used during boot are spent finding an appropriate NIC/driver pair, specifically in iterating over all PCI devices for each supported vendor/device ID.
If the init_net code iterated over attached PCI devices in the outer loop, then over supported vendors/device IDs in the inner loop, the process would be much faster.
The text was updated successfully, but these errors were encountered: