summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_em.c
AgeCommit message (Expand)Author
2005-12-10add a shutdown function and register it with shutdownhook_establish().Brad Smith
2005-12-10remove a bit of unused code.Brad Smith
2005-12-04On the 82571 and newer chipset the ICR register is meaningful onlyBrad Smith
2005-11-28back out last change, caused me panics on jumbo packets, ok deraadt@Peter Stromberg
2005-11-27Since reception of Jumbo frames is enabled by default; ensure properBrad Smith
2005-11-26set Ethernet flow control parameters in em_hardware_init()Brad Smith
2005-11-19a whole lot of spaces to tabs, KNF and some other cleaning.Brad Smith
2005-11-18PCIX -> PCI-X in a few commentsBrad Smith
2005-11-18Use bus_addr_t for address in em_fill_descriptors().Brad Smith
2005-11-18fix wrong htole usage in the 82544 PCI-X workaround codepath in em_encap().Brad Smith
2005-11-18revert part of rev 1.45 ..Brad Smith
2005-11-15remove braces and fix indenting here so its easier to read.Brad Smith
2005-11-14re-add comment which is still valid for em_print_hw_stats().Brad Smith
2005-11-14remove unused em_print_debug_info() function.Brad Smith
2005-11-14remove unused HW VLAN tagging support which cannot be used due to HW limitati...Brad Smith
2005-11-13- Introduce two more stat counters, counting number of RXBrad Smith
2005-11-08Sync up to Intel's latest FreeBSD em driver (3.2.18). A few fixesBrad Smith
2005-11-04don't bother setting error in em_attach() since it'sBrad Smith
2005-10-26add missing bus_dmamap_sync()'s, much closer to working on hppaBrad Smith
2005-10-24Revamp interrupt handling in em(4) driver:Brad Smith
2005-10-21Remove unused global adapter linked list.Brad Smith
2005-10-21In em_process_receive_interrupts() cycle check IFF_RUNNING flag.Brad Smith
2005-10-16While in em_process_receive_interrupts() processing the packet em_init()Brad Smith
2005-10-15- put spl's right in the code and remove the macrosBrad Smith
2005-10-15sort PCI idsBrad Smith
2005-10-10- use correct size when setting hw.max_frame_size for non PCI-E cardsBrad Smith
2005-10-09remove colon after "address" when printing the MAC address.Brad Smith
2005-10-08fix spl usage in em_init().Brad Smith
2005-10-08- return from em_start() if not IFF_RUNNING.Brad Smith
2005-10-07Sync up to Intel's latest FreeBSD em driver which addsBrad Smith
2005-10-02spaces vs tabBrad Smith
2005-10-01remove return at the end of void function.Brad Smith
2005-09-10whitespace removal and KNFBrad Smith
2005-08-09do not set PCI_COMMAND_MASTER_ENABLE explicitly as it's already set in pcisub...Michael Shalayeff
2005-07-16move headers and remove some FreeBSD specific stuff.Brad Smith
2005-07-16fix support for interrupt mitigation.Brad Smith
2005-07-13remove white space and fix formatting for readability.Brad Smith
2005-07-07check ETHERMIN and stop calling em_init_locked() from SIOCSIFMTU ioctl.Brad Smith
2005-07-03include CRCBrad Smith
2005-07-03no need for HW VLAN tag removal so clean up some code.Brad Smith
2005-07-02clear IFF_RUNNING & IFF_OACTIVE in foo_stop() before de-allocating resources.Brad Smith
2005-07-02syncTheo de Raadt
2005-06-14at least allow the transmit checksum code to compileBrad Smith
2005-06-14fix prototypeBrad Smith
2005-06-14re-add part of rev 1.49...Brad Smith
2005-06-12Back out revs 1.48 and 1.49. Checksum offloading caused problems onTodd C. Miller
2005-06-01fix ordering of PCI devsBrad Smith
2005-05-29- better pcidevs entries for Intel Gig and add 82573 idsBrad Smith
2005-05-27allow reception of Jumbo frames by default without having to bumpBrad Smith
2005-05-23loose is not lose. ok deraadt tdeval and a few more typos from jfbTed Unangst