summaryrefslogtreecommitdiffstats
path: root/sys/net
diff options
context:
space:
mode:
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/if_tap.c2
-rw-r--r--sys/net/if_tun.c2
2 files changed, 0 insertions, 4 deletions
diff --git a/sys/net/if_tap.c b/sys/net/if_tap.c
index 45bd7d2..ad6f781 100644
--- a/sys/net/if_tap.c
+++ b/sys/net/if_tap.c
@@ -409,8 +409,6 @@ tapcreate(struct cdev *dev)
const char *name = NULL;
u_char eaddr[6];
- dev->si_flags &= ~SI_CHEAPCLONE;
-
/* allocate driver storage and create device */
tp = malloc(sizeof(*tp), M_TAP, M_WAITOK | M_ZERO);
mtx_init(&tp->tap_mtx, "tap_mtx", NULL, MTX_DEF);
diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c
index 56b3103..e67b213 100644
--- a/sys/net/if_tun.c
+++ b/sys/net/if_tun.c
@@ -361,8 +361,6 @@ tuncreate(const char *name, struct cdev *dev)
struct tun_softc *sc;
struct ifnet *ifp;
- dev->si_flags &= ~SI_CHEAPCLONE;
-
sc = malloc(sizeof(*sc), M_TUN, M_WAITOK | M_ZERO);
mtx_init(&sc->tun_mtx, "tun_mtx", NULL, MTX_DEF);
cv_init(&sc->tun_cv, "tun_condvar");
OpenPOWER on IntegriCloud