Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F144512724
D41330.1775135425.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
596 B
Referenced Files
None
Subscribers
None
D41330.1775135425.diff
View Options
diff --git a/sys/netlink/route/rt.c b/sys/netlink/route/rt.c
--- a/sys/netlink/route/rt.c
+++ b/sys/netlink/route/rt.c
@@ -750,9 +750,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
Thu, Apr 2, 1:10 PM (10 m, 45 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
28245483
Default Alt Text
D41330.1775135425.diff (596 B)
Attached To
Mode
D41330: netlink: fix adding an interface route
Attached
Detach File
Event Timeline
Log In to Comment