diff options
author | Jan Klemkow <jan@cvs.openbsd.org> | 2022-06-27 15:11:24 +0000 |
---|---|---|
committer | Jan Klemkow <jan@cvs.openbsd.org> | 2022-06-27 15:11:24 +0000 |
commit | ff5ea2367eb177c0e473d127a4ce70abf54347c8 (patch) | |
tree | d8c2804e31712adc0a55dc2080bdc6303ecea8df /sys/dev/pci/if_ix.h | |
parent | 4341c76a193452c9c78177f1381808240674b5dd (diff) |
Introduce Large Receive Offloading of TCP segment offloading for ix(4). It is
disabled by default. Also add a tso option to ifconfig(8) to enable and
disable this feature.
ok deraadt
Diffstat (limited to 'sys/dev/pci/if_ix.h')
-rw-r--r-- | sys/dev/pci/if_ix.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/if_ix.h b/sys/dev/pci/if_ix.h index fdae408fdea..41d756110c7 100644 --- a/sys/dev/pci/if_ix.h +++ b/sys/dev/pci/if_ix.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ix.h,v 1.44 2022/01/09 05:42:52 jsg Exp $ */ +/* $OpenBSD: if_ix.h,v 1.45 2022/06/27 15:11:23 jan Exp $ */ /****************************************************************************** @@ -225,6 +225,7 @@ struct ix_softc { struct ifmedia media; struct intrmap *sc_intrmap; int if_flags; + int vlan_stripping; uint16_t num_vlans; uint16_t num_queues; |