network IOCTL commands: The only place in net/netdev/netdev_ioctl.c where the interface state should change is for SIOCSIFFLAGS. the other ones .. SIOCSIFADDR, SIOSLIFADDR, SIODIFADDR .. should not change the link state.
This commit is contained in:
parent
819a6e049e
commit
c9dc1d928d
@ -506,9 +506,7 @@ static int netdev_ifr_ioctl(FAR struct socket *psock, int cmd,
|
|||||||
dev = netdev_ifr_dev(req);
|
dev = netdev_ifr_dev(req);
|
||||||
if (dev)
|
if (dev)
|
||||||
{
|
{
|
||||||
netdev_ifdown(dev);
|
|
||||||
ioctl_set_ipv4addr(&dev->d_ipaddr, &req->ifr_addr);
|
ioctl_set_ipv4addr(&dev->d_ipaddr, &req->ifr_addr);
|
||||||
netdev_ifup(dev);
|
|
||||||
ret = OK;
|
ret = OK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -599,9 +597,7 @@ static int netdev_ifr_ioctl(FAR struct socket *psock, int cmd,
|
|||||||
{
|
{
|
||||||
FAR struct lifreq *lreq = (FAR struct lifreq *)req;
|
FAR struct lifreq *lreq = (FAR struct lifreq *)req;
|
||||||
|
|
||||||
netdev_ifdown(dev);
|
|
||||||
ioctl_set_ipv6addr(dev->d_ipv6addr, &lreq->lifr_addr);
|
ioctl_set_ipv6addr(dev->d_ipv6addr, &lreq->lifr_addr);
|
||||||
netdev_ifup(dev);
|
|
||||||
ret = OK;
|
ret = OK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -830,7 +826,6 @@ static int netdev_ifr_ioctl(FAR struct socket *psock, int cmd,
|
|||||||
dev = netdev_ifr_dev(req);
|
dev = netdev_ifr_dev(req);
|
||||||
if (dev)
|
if (dev)
|
||||||
{
|
{
|
||||||
netdev_ifdown(dev);
|
|
||||||
#ifdef CONFIG_NET_IPv4
|
#ifdef CONFIG_NET_IPv4
|
||||||
dev->d_ipaddr = 0;
|
dev->d_ipaddr = 0;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user