summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_em.c
AgeCommit message (Expand)Author
2006-09-29move the checksum stuff under EM_CSUM_OFFLOAD.Brad Smith
2006-09-17Try to reclaim the TX descriptors in the watchdog handler before actuallyBrad Smith
2006-09-17Overhaul RX path to recover from mbuf cluster allocation failure.Brad Smith
2006-09-17revert revision 1.131, the code in question was later found to not ensureBrad Smith
2006-08-22- Re-add the m_adj() back into em_get_buf(), but this time checkBrad Smith
2006-08-14replace a incorrect number with a proper define. this is a no-op changeBrad Smith
2006-08-09cosmetic tweaks.Brad Smith
2006-08-09Sync up to Intel's latest FreeBSD em driver (6.1.4). Adds PCI id for the PCIeBrad Smith
2006-08-09Use the DMA map size from the DMA map instead of the dma_size field withBrad Smith
2006-08-04- merge em/ixgb_disable_promisc() into em/ixgb_set_promisc().Brad Smith
2006-08-04fix up error messages in em/ixgb_allocate_pci_resources().Brad Smith
2006-08-01(em/ixgb)_(clean_transmit_interrupts/process_receive_interrupts) ->Brad Smith
2006-07-10Fully initialize the softc structure before enabling interrupt. ok brad@Dale Rahn
2006-07-08don't add 1000Mbps media types for a 10/100 only PHY.Brad Smith
2006-07-07Sync up to Intel's latest FreeBSD em driver (6.0.5). Adds supportBrad Smith
2006-07-05revert back to the older driver as this causes some breakage.Brad Smith
2006-07-03Sync up to Intel's latest FreeBSD em driver (6.0.5). Adds supportBrad Smith
2006-06-28remove some whitespace.Brad Smith
2006-06-24make em_fixup_rx() a void function.Brad Smith
2006-05-31fix Jumbo frames on strict alignment architectures by allocating a new mbuf andBrad Smith
2006-05-28- force the maximum receivable frame size down to 1518 bytes forBrad Smith
2006-05-28always set if_hardmtu.Brad Smith
2006-05-28use if_hardmtu for MTU ioctl handler.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-25formattingBrad Smith
2006-05-25formatting; ok bradJason Wright
2006-05-20fix pci resource allocation in em, don't crash!Reyk Floeter
2006-05-20set if_jumbo_mtu and the IFCAP_JUMBO_MTU capabilities flag whereBrad Smith
2006-05-20simplify MTU ioctl switch case.Brad Smith
2006-05-07fix a typo and some KNF.Brad Smith
2006-05-07- Remove unreachable bus_dmamap_unload() in em_dma_malloc().Brad Smith
2006-05-01replace magic value of 32 with EM_MAX_SCATTER.Brad Smith
2006-04-28when setting the interface address, only call em_init() if the interfaceBrad Smith
2006-04-18add a few more Intel Gig PCI ids.Brad Smith
2006-04-16remove splnet usage from em_intr().Brad Smith
2006-04-12when the interrupt handler has run out of work to do it shouldnt return 0David Gwynne
2006-03-28Sync up to Intel's latest FreeBSD em driver (5.1.5). Adds supportBrad Smith
2006-03-27sync in some of the new PCI ids.Brad Smith
2006-03-25allow bpf(4) to ignore packets based on their direction (inbound orDamien Miller
2006-02-24update link status here.Brad Smith
2006-02-22For 82544 and newer chips increase the number of TX descriptors to 512.Brad Smith
2006-02-17If there is no link then set IFM_NONE so ifconfig will show a mediaBrad Smith
2006-02-17- simplify link state handling code.Brad Smith
2006-02-15be gone whitespace.Brad Smith
2006-02-10fix a typo in em_clean_transmit_interrupts() that will cause theBrad Smith
2006-02-10remove unnecessary link state check in the watchdog handler.Brad Smith
2006-01-28a little cleaning.Brad Smith
2006-01-14Only update the RX ring consumer pointer after running through the RX loop,Brad Smith