-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
net: l2: Correct debug message and avoid unneeded assignment #1481
Conversation
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.
Needs rebasing after #1480, otherwise very helpful patch.
subsys/net/ip/l2/ethernet.c
Outdated
if (pkt != arp_pkt) { | ||
NET_DBG("Sending arp pkt %p (orig %p) to iface %p", | ||
arp_pkt, pkt, iface); | ||
|
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.
rebase your patch again latest master, some removed lines were re-introduced again.
besides that it's fine to me.
At the moment we print "Sending ARP packet" even if we found ARP entry and send the packet directly. Signed-off-by: Andrei Emeltchenko <[email protected]>
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.
LGTM
Updated iotivity-constrained with latest 6lowpan fixes, and updated 6lowpan configs to work with latest Zephyr 1.9 Fixes zephyrproject-rtos#1586, zephyrproject-rtos#1565, zephyrproject-rtos#1481, zephyrproject-rtos#1237 Signed-off-by: Jimmy Huang <[email protected]>
At the moment we print "Sending ARP packet" even if we found ARP entry
and send the packet directly.
Signed-off-by: Andrei Emeltchenko [email protected]