-
Notifications
You must be signed in to change notification settings - Fork 41
[multicast] viona CTRL_RX/CTRL_MAC receive filtering + softnpu egress lock scoping + dep updates #1093
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
[multicast] viona CTRL_RX/CTRL_MAC receive filtering + softnpu egress lock scoping + dep updates #1093
Changes from all commits
b0c16f1
637ef54
cd0e261
dcad237
27abaf3
cc0b57f
df5fd0a
e691d68
3c07d60
e10c1f9
4fb9bd5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1190,6 +1190,10 @@ impl PciVirtioState { | |
| self.reset_queues_locked(dev, &mut state); | ||
| state.reset(); | ||
| let _ = self.isr_state.read_clear(); | ||
| // Release the state lock before calling into the device so that its | ||
| // reset handling may query generic virtio state. | ||
| drop(state); | ||
| dev.device_reset(); | ||
|
Comment on lines
+1193
to
+1196
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we should not release the mutex here, or |
||
| } | ||
|
|
||
| pub fn reset<D>(&self, dev: &D) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.