-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
[EFR32] Adds lwip ipv6 MLD support for neighborhood discovery protocol #23105
Merged
andy31415
merged 2 commits into
project-chip:master
from
rosahay-silabs:feature/add-lwip-ipv6-mld-support-new
Oct 11, 2022
Merged
[EFR32] Adds lwip ipv6 MLD support for neighborhood discovery protocol #23105
andy31415
merged 2 commits into
project-chip:master
from
rosahay-silabs:feature/add-lwip-ipv6-mld-support-new
Oct 11, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pullapprove
bot
requested review from
andy31415,
anush-apple,
arkq,
Byungjoo-Lee,
bzbarsky-apple,
carol-apple,
chrisdecenzo,
chshu,
chulspro,
Damian-Nordic,
dhrishi,
electrocucaracha,
emargolis,
franck-apple,
gjc13,
harsha-rajendran,
hawk248,
isiu-apple,
jelderton,
jepenven-silabs,
jmartinez-silabs,
jtung-apple,
kpschoedel,
lazarkov and
LuDuda
October 11, 2022 12:26
pullapprove
bot
requested review from
wbschiller,
selissia,
woody-apple,
tcarmelveilleux,
xylophone21,
yufengwangca,
tecimovic,
yunhanw-google,
tehampson,
turon,
vijs and
vivien-apple
October 11, 2022 12:26
rosahay-silabs
changed the title
Adds lwip ipv6 MLD support for neighborhood discovery protocol
[EFR32] Adds lwip ipv6 MLD support for neighborhood discovery protocol
Oct 11, 2022
PR #23105: Size comparison from 7b284c0 to e68ab10 Increases (8 builds for bl602, bl702, cc13x2_26x2, esp32, nrfconnect, psoc6)
Decreases (8 builds for cc13x2_26x2, efr32, esp32, psoc6, qpg)
Full report (35 builds for bl602, bl702, cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg)
|
jmartinez-silabs
approved these changes
Oct 11, 2022
bzbarsky-apple
approved these changes
Oct 11, 2022
andy31415
approved these changes
Oct 11, 2022
selissia
pushed a commit
to selissia/connectedhomeip
that referenced
this pull request
Oct 12, 2022
project-chip#23105) * Adds LWIP_IPV6_MLD support for Neighborhood discovery * Adds temporary fix for NS loopback issue
mkardous-silabs
pushed a commit
to mkardous-silabs/connectedhomeip
that referenced
this pull request
Nov 2, 2022
…r neighborhood discovery protocol (project-chip#23105)" from silabs to silabs_1.0 Merge in WMN_TOOLS/matter from cherry-pick/add-lwip-ipv6-mld-support-new to silabs_1.0 Squashed commit of the following: commit 61fdbeb2b50a67a05ed27de87ed052453d9bfe5e Author: Rohan Sahay <[email protected]> Date: Tue Oct 11 19:51:03 2022 +0530 [EFR32] Adds lwip ipv6 MLD support for neighborhood discovery protocol (project-chip#23105) * Adds LWIP_IPV6_MLD support for Neighborhood discovery * Adds temporary fix for NS loopback issue
rerasool
added a commit
to SiliconLabs/matter
that referenced
this pull request
Nov 2, 2022
…D support for neighborhood discovery protocol (project-chip#23105)" from silabs to silabs_1.0 Merge in WMN_TOOLS/matter from cherry-pick/add-lwip-ipv6-mld-support-new to silabs_1.0 Squashed commit of the following: commit 61fdbeb2b50a67a05ed27de87ed052453d9bfe5e Author: Rohan Sahay <[email protected]> Date: Tue Oct 11 19:51:03 2022 +0530 [EFR32] Adds lwip ipv6 MLD support for neighborhood discovery protocol (project-chip#23105) * Adds LWIP_IPV6_MLD support for Neighborhood discovery * Adds temporary fix for NS loopback issue
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem
The DUT should be able to respond to neighborhood solicitation packets when running in IPV6 mode.
The DUT was not responding to neighborhood solicitation packets when running in IPV6 mode. The DUT was not listening on the
FF02::1:XXXX:XXXX
multicast group.Solution
Enabled the LWIP_IPV6_MLD flag on the device, temporarily disabling the Duplicate Address Detectation process (since it has some issues).