diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-21 17:45:25 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-21 17:45:25 -0700 |
commit | d6f2fe98ebc2dd8f3e9926673e0d8acd2c764e71 (patch) | |
tree | 009356baa16941facc8df7e057b78c0397093013 /include | |
parent | 04fc5fd39e09c460fd478ea84b34c445dd376759 (diff) | |
parent | 2053ed02a62f2c66d9cb9b51aea0836a7d8dbabf (diff) | |
download | linux-d6f2fe98ebc2dd8f3e9926673e0d8acd2c764e71.tar.bz2 |
Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6
* 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6:
Add constant for FCS/CRC length (frame check sequence)
declance: Remove a dangling spin_unlock_irq() thingy
e1000: Don't enable polling in open() (was: e1000: assertion hit in e1000_clean(), kernel 2.6.21.1)
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/if_ether.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/if_ether.h b/include/linux/if_ether.h index 1db774cf9dc2..3213f6f4aa58 100644 --- a/include/linux/if_ether.h +++ b/include/linux/if_ether.h @@ -33,6 +33,7 @@ #define ETH_ZLEN 60 /* Min. octets in frame sans FCS */ #define ETH_DATA_LEN 1500 /* Max. octets in payload */ #define ETH_FRAME_LEN 1514 /* Max. octets in frame sans FCS */ +#define ETH_FCS_LEN 4 /* Octets in the FCS */ /* * These are the defined Ethernet Protocol ID's. |