FreeBSD Bugzilla – Attachment 230927 Details for
Bug 193280
CARP IPv6 NDP issue
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
ndp neighbor solicitation carp source mac fix
nd6_nbr_carp_source_mac_fix.patch (text/plain), 679 bytes, created by
Thomas Steen Rasmussen / Tykling
on 2022-01-11 20:15:24 UTC
(
hide
)
Description:
ndp neighbor solicitation carp source mac fix
Filename:
MIME Type:
Creator:
Thomas Steen Rasmussen / Tykling
Created:
2022-01-11 20:15:24 UTC
Size:
679 bytes
patch
obsolete
>diff --git a/sys/netinet6/nd6_nbr.c b/sys/netinet6/nd6_nbr.c >index 2100700733a..8f47b7ca861 100644 >--- a/sys/netinet6/nd6_nbr.c >+++ b/sys/netinet6/nd6_nbr.c >@@ -534,7 +534,7 @@ nd6_ns_output_fib(struct ifnet *ifp, const struct in6_addr *saddr6, > * Multicast NS MUST add one add the option > * Unicast NS SHOULD add one add the option > */ >- if (nonce == NULL && (mac = nd6_ifptomac(ifp))) { >+ if (nonce == NULL && ((ifp->if_carp && (mac = (*carp_macmatch6_p)(ifp, m, &ip6->ip6_src))) || (mac = nd6_ifptomac(ifp)))) { > int optlen = sizeof(struct nd_opt_hdr) + ifp->if_addrlen; > struct nd_opt_hdr *nd_opt = (struct nd_opt_hdr *)(nd_ns + 1); > /* 8 byte alignments... */
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 193280
:
146727
|
230926
| 230927