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
This commit is contained in:
jmg 2004-11-17 18:32:44 +00:00
parent 5613ec71a7
commit bafabf789b

View File

@ -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 */