We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The code currently executes ethtool commands with the Ethtool class:
detd/detd/ethtool.py
Line 23 in 30aeb78
In some cases, this leads to problems when two commands are issues consecutively. A workaround is to sleep one second, like in:
detd/detd/devices/intel_i225.py
Line 67 in 30aeb78
This is not optimal, and introduces a delay of 1 second, that accounts for a big chunk of the execution time.
The code should use the SIOCETHTOOL to implement the ethtool operations instead. One suggested implementation could be:
detd/detd/systemconf.py
Line 349 in 30aeb78
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The code currently executes ethtool commands with the Ethtool class:
detd/detd/ethtool.py
Line 23 in 30aeb78
In some cases, this leads to problems when two commands are issues consecutively. A workaround is to sleep one second, like in:
detd/detd/devices/intel_i225.py
Line 67 in 30aeb78
This is not optimal, and introduces a delay of 1 second, that accounts for a big chunk of the execution time.
The code should use the SIOCETHTOOL to implement the ethtool operations instead. One suggested implementation could be:
detd/detd/systemconf.py
Line 349 in 30aeb78
The text was updated successfully, but these errors were encountered: