Last change still had an issue, one more time...
This commit is contained in:
parent
9932a3fefc
commit
62aca36544
@ -1045,8 +1045,8 @@ em_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
|
||||
struct ifreq *ifr = (struct ifreq *)data;
|
||||
#if defined(INET) || defined(INET6)
|
||||
struct ifaddr *ifa = (struct ifaddr *)data;
|
||||
bool avoid_reset = FALSE;
|
||||
#endif
|
||||
bool avoid_reset = FALSE;
|
||||
int error = 0;
|
||||
|
||||
if (adapter->in_detach)
|
||||
@ -1062,7 +1062,6 @@ em_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
|
||||
if (ifa->ifa_addr->sa_family == AF_INET6)
|
||||
avoid_reset = TRUE;
|
||||
#endif
|
||||
#if defined(INET) || defined(INET6)
|
||||
/*
|
||||
** Calling init results in link renegotiation,
|
||||
** so we avoid doing it when possible.
|
||||
@ -1071,11 +1070,12 @@ em_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
|
||||
ifp->if_flags |= IFF_UP;
|
||||
if (!(ifp->if_drv_flags & IFF_DRV_RUNNING))
|
||||
em_init(adapter);
|
||||
#ifdef INET
|
||||
if (!(ifp->if_flags & IFF_NOARP))
|
||||
arp_ifinit(ifp, ifa);
|
||||
#endif
|
||||
} else
|
||||
error = ether_ioctl(ifp, command, data);
|
||||
#endif
|
||||
break;
|
||||
case SIOCSIFMTU:
|
||||
{
|
||||
|
@ -992,8 +992,8 @@ igb_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
|
||||
struct ifreq *ifr = (struct ifreq *)data;
|
||||
#if defined(INET) || defined(INET6)
|
||||
struct ifaddr *ifa = (struct ifaddr *)data;
|
||||
bool avoid_reset = FALSE;
|
||||
#endif
|
||||
bool avoid_reset = FALSE;
|
||||
int error = 0;
|
||||
|
||||
if (adapter->in_detach)
|
||||
@ -1009,7 +1009,6 @@ igb_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
|
||||
if (ifa->ifa_addr->sa_family == AF_INET6)
|
||||
avoid_reset = TRUE;
|
||||
#endif
|
||||
#if defined(INET) || defined(INET6)
|
||||
/*
|
||||
** Calling init results in link renegotiation,
|
||||
** so we avoid doing it when possible.
|
||||
@ -1018,11 +1017,12 @@ igb_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
|
||||
ifp->if_flags |= IFF_UP;
|
||||
if (!(ifp->if_drv_flags & IFF_DRV_RUNNING))
|
||||
igb_init(adapter);
|
||||
#ifdef INET
|
||||
if (!(ifp->if_flags & IFF_NOARP))
|
||||
arp_ifinit(ifp, ifa);
|
||||
#endif
|
||||
} else
|
||||
error = ether_ioctl(ifp, command, data);
|
||||
#endif
|
||||
break;
|
||||
case SIOCSIFMTU:
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user