diff options
author | jmg <jmg@FreeBSD.org> | 2004-11-17 18:32:44 +0000 |
---|---|---|
committer | jmg <jmg@FreeBSD.org> | 2004-11-17 18:32:44 +0000 |
commit | f5e433d72b353827585dc716ec1c9bf236d0e3ec (patch) | |
tree | 9a860334dfbc6cbae052b3b8af48df69d3dfc81f | |
parent | d15ad1ae11194fe9cda89f00c923fc36a3292599 (diff) | |
download | FreeBSD-src-f5e433d72b353827585dc716ec1c9bf236d0e3ec.zip FreeBSD-src-f5e433d72b353827585dc716ec1c9bf236d0e3ec.tar.gz |
sync comment on IFF_OACTIVE with reality.. IFF_OACTIVE is set when the
hardware cannot take anymore packets, and so will supress the calling of
the device's if_start method...
Submitted by: bde
-rw-r--r-- | sys/net/if.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/if.h b/sys/net/if.h index 77ffb1a..a31653e 100644 --- a/sys/net/if.h +++ b/sys/net/if.h @@ -119,7 +119,7 @@ struct if_data { #define IFF_NOARP 0x80 /* no address resolution protocol */ #define IFF_PROMISC 0x100 /* receive all packets */ #define IFF_ALLMULTI 0x200 /* receive all multicast packets */ -#define IFF_OACTIVE 0x400 /* transmission in progress */ +#define IFF_OACTIVE 0x400 /* tx hardware queue is full */ #define IFF_SIMPLEX 0x800 /* can't hear own transmissions */ #define IFF_LINK0 0x1000 /* per link layer defined bit */ #define IFF_LINK1 0x2000 /* per link layer defined bit */ |