summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/if_ix.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* the 82598AT variant of ix(4) is 10GbaseT, change media type from AUTO.reyk2008-06-191-1/+3
|
* rename arc4random_bytes => arc4random_buf to match libc's nicer name;djm2008-06-091-2/+2
| | | | ok deraadt@
* more cleanup, removed unused code. we don't do LRO/RSS yet, code canreyk2008-06-081-99/+10
| | | | be added later if we ever support it.
* dma sync the tx ring and post new packets to the chip once per call toreyk2008-06-081-12/+20
| | | | | | the start routine instead of once per packet. From ixgb(4), also works with ix(4)
* we don't support msi/msi-x, remove the codereyk2008-06-081-208/+3
|
* replace strange Linux-style u8/u16/u32/u64/s32 integer types with thereyk2008-06-081-71/+70
| | | | | standard C99 uint*_t/int*_t types (i don't get why these drivers always use their own types when there is a well-defined standard).
* Import ix, a driver for the Intel 82598 PCI-Express 10 Gig Ethernet Adapter,reyk2008-06-081-0/+3443
based on Intel's ixgbe driver. Done on borrowed hardware since Intel was too poor to give us a card. ok deraadt@