diff options
| author | Marty Connor | 2007-11-21 03:33:42 +0100 |
|---|---|---|
| committer | Marty Connor | 2007-11-21 03:33:42 +0100 |
| commit | 2d60a3963f3197bb52db7f490a4761de05aabeb5 (patch) | |
| tree | edbde3c505ecaa3f98f90c7c32051da5231f5f87 /src/drivers/net/e1000/e1000.h | |
| parent | This version now transmits and receives. (diff) | |
| download | ipxe-2d60a3963f3197bb52db7f490a4761de05aabeb5.tar.gz ipxe-2d60a3963f3197bb52db7f490a4761de05aabeb5.tar.xz ipxe-2d60a3963f3197bb52db7f490a4761de05aabeb5.zip | |
Fixed receive instability by not enabling interrupts. duh.
I have successfully booted DOS via iSCSI and PXELINUX via TFTP with this
version of the e1000 driver.
Diffstat (limited to 'src/drivers/net/e1000/e1000.h')
| -rw-r--r-- | src/drivers/net/e1000/e1000.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/drivers/net/e1000/e1000.h b/src/drivers/net/e1000/e1000.h index 2edc7117a..9d601902b 100644 --- a/src/drivers/net/e1000/e1000.h +++ b/src/drivers/net/e1000/e1000.h @@ -78,6 +78,9 @@ struct e1000_adapter; #define E1000_FC_PAUSE_TIME 0x0680 /* 858 usec */ +/* this is the size past which hardware will drop packets when setting LPE=0 */ +#define MAXIMUM_ETHERNET_VLAN_SIZE 1522 + /* How many Tx Descriptors do we need to call netif_wake_queue ? */ #define E1000_TX_QUEUE_WAKE 16 /* How many Rx Buffers do we bundle into one write to the hardware ? */ |
