summaryrefslogtreecommitdiffstats
path: root/sys/net/if_tap.c
diff options
context:
space:
mode:
authorqingli <qingli@FreeBSD.org>2010-03-11 17:56:46 +0000
committerqingli <qingli@FreeBSD.org>2010-03-11 17:56:46 +0000
commitcde322640ac967dbb1cf657d5695d8b8cf4c864b (patch)
treeb70ed30a030af65480f44c2f15dbd0cd15652910 /sys/net/if_tap.c
parent2684d78c89ad7cfd18346398691e6e03d263f6c6 (diff)
downloadFreeBSD-src-cde322640ac967dbb1cf657d5695d8b8cf4c864b.zip
FreeBSD-src-cde322640ac967dbb1cf657d5695d8b8cf4c864b.tar.gz
The if_tap interface is of IFT_ETHERNET type, but it
does not set or update the if_link_state variable. As such RT_LINK_IS_UP() fails for the if_tap interface. Also, the RT_LINK_IS_UP() needs to bypass all loopback interfaces because loopback interfaces are considered up logically as long as the system is running. This patch fixes the above issues by setting and updating the if_link_state variable when the tap interface is opened or closed respectively. Similary approach is already done in the if_tun device. MFC after: 3 days
Diffstat (limited to 'sys/net/if_tap.c')
-rw-r--r--sys/net/if_tap.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/net/if_tap.c b/sys/net/if_tap.c
index 93801f1..9123e8c 100644
--- a/sys/net/if_tap.c
+++ b/sys/net/if_tap.c
@@ -502,6 +502,7 @@ tapopen(struct cdev *dev, int flag, int mode, struct thread *td)
ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
if (tapuponopen)
ifp->if_flags |= IFF_UP;
+ if_link_state_change(ifp, LINK_STATE_UP);
splx(s);
TAPDEBUG("%s is open. minor = %#x\n", ifp->if_xname, dev2unit(dev));
@@ -547,6 +548,7 @@ tapclose(struct cdev *dev, int foo, int bar, struct thread *td)
} else
mtx_unlock(&tp->tap_mtx);
+ if_link_state_change(ifp, LINK_STATE_DOWN);
funsetown(&tp->tap_sigio);
selwakeuppri(&tp->tap_rsel, PZERO+1);
KNOTE_UNLOCKED(&tp->tap_rsel.si_note, 0);
OpenPOWER on IntegriCloud