Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F144405796
D41330.id125615.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
628 B
Referenced Files
None
Subscribers
None
D41330.id125615.diff
View Options
Index: sys/netlink/route/rt.c
===================================================================
--- sys/netlink/route/rt.c
+++ sys/netlink/route/rt.c
@@ -753,9 +753,14 @@
struct ifaddr *ifa = ifaof_ifpforaddr(gw_sa, nh->nh_ifp);
if (ifa == NULL) {
- NL_LOG(LOG_DEBUG, "Unable to determine ifa, skipping");
- *perror = EINVAL;
- return (NULL);
+ /* Try link-level ifa. */
+ gw_sa = &nh->gw_sa;
+ ifa = ifaof_ifpforaddr(gw_sa, nh->nh_ifp);
+ if (ifa == NULL) {
+ NL_LOG(LOG_DEBUG, "Unable to determine ifa, skipping");
+ *perror = EINVAL;
+ return (NULL);
+ }
}
nhop_set_src(nh, ifa);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Feb 9, 6:45 AM (19 h, 14 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
28549928
Default Alt Text
D41330.id125615.diff (628 B)
Attached To
Mode
D41330: netlink: fix adding an interface route
Attached
Detach File
Event Timeline
Log In to Comment