-
Notifications
You must be signed in to change notification settings - Fork 42
[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
base: master
Are you sure you want to change the base?
[multicast] viona CTRL_RX/CTRL_MAC receive filtering + softnpu egress lock scoping + dep updates #1093
Changes from all commits
b0c16f1
637ef54
cd0e261
dcad237
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 |
|---|---|---|
|
|
@@ -227,6 +227,16 @@ pub trait VirtioDevice: Send + Sync + 'static + Lifecycle { | |
| ) -> Result<(), ()> { | ||
| Ok(()) | ||
| } | ||
|
|
||
| /// Notification that the virtio portion of the device has been reset. | ||
| /// | ||
| /// This fires for guest-initiated status resets as well as full device | ||
| /// resets, after the generic virtio state and virtqueues have been reset. | ||
| /// | ||
| /// Devices should use this to restore any state tied to feature | ||
| /// negotiation, since the next driver may negotiate a different feature | ||
| /// set. | ||
| fn device_reset(&self) {} | ||
|
Comment on lines
+230
to
+239
Contributor
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. I think this is already covered by
Contributor
Author
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. Not quite as The existing notification is only |
||
| } | ||
|
|
||
| pub trait VirtioIntr: Send + 'static { | ||
|
|
||
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.
Calling this out to reset to
mainbefore merge.