summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/if_xge.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* - xge_mcast_filter() -> xge_setmulti().brad2006-08-101-23/+27
| | | | | - move the promiscuous mode handling code to xge_setpromisc() and simplify the ioctl handler.
* - Use BUS_DMA_NOWAIT flag with bus_dmamap_create() in xge_attach() for thebrad2006-08-101-5/+5
| | | | | | | | creation of transmit and receive DMA maps. - Fix typos in xge_alloc_rxmem(), make sure to destroy and unmap the RX descriptor map instead of the TX descriptor map when encountering an error. From Gireesh Nagabhushana @ Neterion
* disable Jumbos until reception of Jumbo frames can be fixed.brad2006-08-021-1/+7
|
* lower the number of TX descriptors from 8192 to 2048.brad2006-07-211-2/+2
| | | | From Gireesh Nagabhushana @ Neterion
* debug message macros.brad2006-07-141-1/+12
|
* use the 10Gb SR media type for now.brad2006-06-211-4/+4
|
* fix up the comment.brad2006-06-091-3/+3
|
* hide link up/down messages under XGE_DEBUG.brad2006-06-011-1/+5
|
* do not enable promiscous mode by default.brad2006-06-011-4/+21
|
* These magics -> This magicbrad2006-06-011-2/+2
|
* The largest allowable frame size is 9622 bytes.brad2006-06-011-3/+4
|
* enable hardware RX checksum offload.brad2006-06-011-18/+7
|
* formattingbrad2006-06-011-27/+30
|
* - remove ETHER_MAX_LEN_JUMBO and ETHERMTU_JUMBO.brad2006-05-281-6/+7
| | | | | | - use if_hardmtu for MTU ioctl handlers. ok reyk@
* unknown ioctl is ENOTTY not EINVALjason2006-05-281-2/+2
|
* remove IFCAP_JUMBO_MTU interface capabilities flag and set if_hardmtu in a fewbrad2006-05-271-2/+2
| | | | | | more drivers. ok reyk@
* rename jumbo mtu to if_hardmtu; ok brad reykderaadt2006-05-261-2/+2
|
* set if_jumbo_mtu and the IFCAP_JUMBO_MTU capabilities flag wherebrad2006-05-201-2/+3
| | | | | | appropriate. ok reyk@
* add a shutdown hook.brad2006-05-151-2/+15
|
* only call init if not running.brad2006-05-141-2/+3
|
* set the multicast filter in xge_init().brad2006-05-141-1/+3
|
* set the maximum MRU by default.brad2006-05-141-6/+6
|
* account for interrupts in the interrupt handler.brad2006-05-141-2/+2
|
* re-enable link up/down messages because they spray a lot right nowderaadt2006-05-141-6/+2
| | | | | (clearly indicating some bug) copy mac address correctly
* comment out link up/down printf's.brad2006-05-141-1/+5
|
* use the PCI id from pcireg.hbrad2006-05-131-2/+2
|
* add the PCI id and minimal changes necessary for the Xframe-II, accordingbrad2006-05-131-6/+25
| | | | to the Xframe-II porting docs from Neterion. currently untested.
* always call xge_init() here, for the time being.brad2006-05-011-3/+2
|
* OpenBSD-ify the attach function printf's.brad2006-05-011-18/+15
|
* initial port of a driver for the Neterion Xframe-I 10Gb Ethernet adapter.brad2006-05-011-0/+1323
From NetBSD