pkarashchenko commented on code in PR #7821:
URL: https://github.com/apache/nuttx/pull/7821#discussion_r1043075011
##########
net/netdev/netdev_ioctl.c:
##########
@@ -860,6 +877,15 @@ static int netdev_ifr_ioctl(FAR struct socket *psock, int
cmd,
case SIOCGIFMTU: /* Get MTU size */
req->ifr_mtu = NETDEV_PKTSIZE(dev);
break;
+ case SIOCSIFMTU: /* Set MTU size */
+ {
+ dev = netdev_ifr_dev(req);
+ if (dev)
+ {
+ NETDEV_PKTSIZE(dev) = req->ifr_mtu;
+ }
+ }
Review Comment:
```suggestion
dev = netdev_ifr_dev(req);
if (dev != NULL)
{
NETDEV_PKTSIZE(dev) = req->ifr_mtu;
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]