-
Notifications
You must be signed in to change notification settings - Fork 245
New issue
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
[draft] km_stress_test fixes #4117
base: main
Are you sure you want to change the base?
Conversation
{ | ||
NET_EBPF_EXT_LOG_ENTRY(); | ||
|
||
ExWaitForRundownProtectionRelease(&rundown->protection); | ||
rundown->rundown_occurred = TRUE; | ||
if (rundown->rundown_initialized == TRUE) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks to me like this is the crux of the fix. I haven't been able to reason out why this resolves the issue though.
Based on the test failure crash dump hang, we are waiting (forever) on DriverUnload. In that code path, I can't find a place where we would be invoking this function on an uninitialized rundown object.
scripts/run_driver_tests.psm1
Outdated
@@ -460,7 +459,7 @@ function Invoke-ConnectRedirectTest | |||
function Invoke-CICDStressTests | |||
{ | |||
param([parameter(Mandatory = $true)][bool] $VerboseLogs, | |||
[parameter(Mandatory = $false)][int] $TestHangTimeout = 3600, | |||
[parameter(Mandatory = $false)][int] $TestHangTimeout = (45*60), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The stress tests were NOT passing any timeout value, which would mean a default of 10 minutes. However, there are multiple stress test cases, which each utilize the -td=5 (5 minutes) test parameter. So surely this is insufficient.
Description
Describe the purpose of and changes within this Pull Request.
Testing
Do any existing tests cover this change? Are new tests needed?
Documentation
Is there any documentation impact for this change?
Installation
Is there any installer impact for this change?