-
Notifications
You must be signed in to change notification settings - Fork 81
link: Support specifying arbitrary LinkMessage for RTM_DELLINK
#145
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
Conversation
Summary of ChangesHello @cathay4t, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request enhances the Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
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.
Code Review
This pull request introduces LinkHandle::del_with_message() to allow sending an arbitrary LinkMessage for RTM_DELLINK operations, which is demonstrated by adding bridge VLAN deletion to an example. The core logic change is sound. My review includes a high-priority comment on an API inconsistency in del_with_message that should be addressed, as it likely prevents the code from compiling as-is and deviates from the established API pattern. I've also included a medium-priority suggestion to refactor duplicated code in the updated example for better clarity and maintainability.
| let message = LinkBridgeVlan::new(port_index) | ||
| .vlan(10, BridgeVlanInfoFlags::Pvid) | ||
| .vlan_range_start(20, BridgeVlanInfoFlags::empty()) | ||
| .vlan_range_end(30, BridgeVlanInfoFlags::empty()) | ||
| .build(); | ||
|
|
||
| handle.link().del_with_message(message).execute().await?; | ||
|
|
||
| let message = LinkBridgeVlan::new(bridge_index) | ||
| .bridge_self() | ||
| .vlan(40, BridgeVlanInfoFlags::Pvid) | ||
| .vlan_range_start(50, BridgeVlanInfoFlags::empty()) | ||
| .vlan_range_end(60, BridgeVlanInfoFlags::empty()) | ||
| .build(); |
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.
There's significant code duplication between this function (del_bridge_vlan) and set_bridge_vlan. The logic for building the LinkMessage for both the port and the bridge is identical in both functions.
To improve maintainability and reduce redundancy, consider extracting the message creation logic into separate helper functions. This would make the example cleaner and easier to understand.
For example:
fn build_port_vlan_msg(port_index: u32) -> rtnetlink::packet_route::link::LinkMessage {
LinkBridgeVlan::new(port_index)
.vlan(10, BridgeVlanInfoFlags::Pvid)
.vlan_range_start(20, BridgeVlanInfoFlags::empty())
.vlan_range_end(30, BridgeVlanInfoFlags::empty())
.build()
}
fn build_bridge_self_vlan_msg(bridge_index: u32) -> rtnetlink::packet_route::link::LinkMessage {
LinkBridgeVlan::new(bridge_index)
.bridge_self()
.vlan(40, BridgeVlanInfoFlags::Pvid)
.vlan_range_start(50, BridgeVlanInfoFlags::empty())
.vlan_range_end(60, BridgeVlanInfoFlags::empty())
.build()
}Then you could simplify del_bridge_vlan (and set_bridge_vlan) to use these helpers.
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.
This is over optimization considering this is example code. I think keeping function simple is more important.
In order to support deleting bridge VLAN information, this patch introduced `LinkHandle::del_with_message()` allowing sending arbitrary LinkMessage for the `RTM_DELLINK` call. Example code updated with bridge VLAN deletion function. Signed-off-by: Gris Ge <fge@redhat.com>
In order to support deleting bridge VLAN information, this patch
introduced
LinkHandle::del_with_message()allowing sending arbitraryLinkMessage for the
RTM_DELLINKcall.Example code updated with bridge VLAN deletion function.