summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_xge.c
AgeCommit message (Expand)Author
2009-08-13- consistify cfdriver for the ethernet drivers (0 -> NULL)Jasper Lievisse Adriaanse
2009-08-10xge_shutdown is not needed now that interface is stopped, sinceTheo de Raadt
2008-11-28Eliminate the redundant bits of code for MTU and multicast handlingBrad Smith
2008-11-09Introduce bpf_mtap_ether(), which for the benefit of bpf listenersChristian Weisgerber
2008-10-21Re-add support for RX VLAN tag stripping.Brad Smith
2008-10-16Switch the existing TX VLAN hardware support over to having theChristian Weisgerber
2008-10-02First step towards cleaning up the Ethernet driver ioctl handling.Brad Smith
2008-09-24remove dead stores and newly created unused variables.Charles Longeau
2007-09-19Use the proper baudrate for 10Gb hw now that it can fit into the buadrateBrad Smith
2007-05-28fix C++ style commentChris Kuethe
2007-05-26wrap the debug macro in do { } while (0)David Gwynne
2007-05-26reformat the softc to make it look like everything else we have.David Gwynne
2007-05-26get rid of #define sc_if sc_arpcom.ac_ifDavid Gwynne
2007-05-26this isnt netbsdDavid Gwynne
2007-02-27Enable HW Tx checksum offloading and VLAN tag insertion. From brad@.Mark Kettenis
2007-02-27Don't strip off VLAN tags. From brad@.Mark Kettenis
2006-10-24remove useless chunks of code that do nothing, since endian adjustmentsBrad Smith
2006-10-23- remove the TODO comments at the top.Brad Smith
2006-10-11call xge_stop() at the top of xge_init().Brad Smith
2006-10-10- Only use the MAC address workaround for the Xframe chipset.Brad Smith
2006-08-25only write to the RMAC_CFG_KEY register for the Xframe chipset.Brad Smith
2006-08-10- xge_mcast_filter() -> xge_setmulti().Brad Smith
2006-08-10- Use BUS_DMA_NOWAIT flag with bus_dmamap_create() in xge_attach() for theBrad Smith
2006-08-02disable Jumbos until reception of Jumbo frames can be fixed.Brad Smith
2006-07-21lower the number of TX descriptors from 8192 to 2048.Brad Smith
2006-07-14debug message macros.Brad Smith
2006-06-21use the 10Gb SR media type for now.Brad Smith
2006-06-09fix up the comment.Brad Smith
2006-06-01hide link up/down messages under XGE_DEBUG.Brad Smith
2006-06-01do not enable promiscous mode by default.Brad Smith
2006-06-01These magics -> This magicBrad Smith
2006-06-01The largest allowable frame size is 9622 bytes.Brad Smith
2006-06-01enable hardware RX checksum offload.Brad Smith
2006-06-01formattingBrad Smith
2006-05-28- remove ETHER_MAX_LEN_JUMBO and ETHERMTU_JUMBO.Brad Smith
2006-05-28unknown ioctl is ENOTTY not EINVALJason Wright
2006-05-27remove IFCAP_JUMBO_MTU interface capabilities flag and set if_hardmtu in a fewBrad Smith
2006-05-26rename jumbo mtu to if_hardmtu; ok brad reykTheo de Raadt
2006-05-20set if_jumbo_mtu and the IFCAP_JUMBO_MTU capabilities flag whereBrad Smith
2006-05-15add a shutdown hook.Brad Smith
2006-05-14only call init if not running.Brad Smith
2006-05-14set the multicast filter in xge_init().Brad Smith
2006-05-14set the maximum MRU by default.Brad Smith
2006-05-14account for interrupts in the interrupt handler.Brad Smith
2006-05-14re-enable link up/down messages because they spray a lot right nowTheo de Raadt
2006-05-14comment out link up/down printf's.Brad Smith
2006-05-13use the PCI id from pcireg.hBrad Smith
2006-05-13add the PCI id and minimal changes necessary for the Xframe-II, accordingBrad Smith
2006-05-01always call xge_init() here, for the time being.Brad Smith
2006-05-01OpenBSD-ify the attach function printf's.Brad Smith