diff options
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/hme/if_hme.c | 1 | ||||
-rw-r--r-- | sys/dev/tx/if_tx.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/hme/if_hme.c b/sys/dev/hme/if_hme.c index 46cc6d6..e2c22fa 100644 --- a/sys/dev/hme/if_hme.c +++ b/sys/dev/hme/if_hme.c @@ -319,6 +319,7 @@ hme_config(struct hme_softc *sc) */ ifp->if_data.ifi_hdrlen = sizeof(struct ether_vlan_header); ifp->if_capabilities |= IFCAP_VLAN_MTU; + ifp->if_capenable |= IFCAP_VLAN_MTU; callout_init(&sc->sc_tick_ch, 0); return (0); diff --git a/sys/dev/tx/if_tx.c b/sys/dev/tx/if_tx.c index 944dcd3..2b58cb1 100644 --- a/sys/dev/tx/if_tx.c +++ b/sys/dev/tx/if_tx.c @@ -413,6 +413,7 @@ epic_attach(dev) ifp->if_hdrlen = sizeof(struct ether_vlan_header); ifp->if_capabilities |= IFCAP_VLAN_MTU; + ifp->if_capenable |= IFCAP_VLAN_MTU; callout_handle_init(&sc->stat_ch); /* Activate our interrupt handler. */ |