aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/em
Commit message (Expand)AuthorAgeFilesLines
* On the 82571 and newer chipset the ICR register is meaningful onlyGleb Smirnoff2005-12-021-1/+4
* Remember the bus_dmamap_t where we loaded the mbuf, and sync this map insteadOlivier Houchard2005-11-241-1/+3
* Merge in new driver version from Intel - 3.2.18.Gleb Smirnoff2005-11-243-167/+494
* busdma cleanup for em(4).Pyun YongHyeon2005-11-212-86/+127
* - Backout last change, since it is memory overkill for a non busy host orGleb Smirnoff2005-11-173-13/+44
* - Store pointer to the link-level address right in "struct ifnet"Ruslan Ermilov2005-11-111-1/+1
* Give a try to autoconfiguring the number of transmit and receiveGleb Smirnoff2005-11-102-7/+14
* - Introduce two more stat counters, counting number of RXGleb Smirnoff2005-11-092-4/+9
* Make em(4) work on big-endian architectures.Pyun YongHyeon2005-11-094-66/+75
* Put probe-time printf of adapter speed and duplex behind bootverbose:Robert Watson2005-10-311-10/+14
* Some more minor cleanups of em(4) driver:Gleb Smirnoff2005-10-202-36/+10
* Revamp interrupt handling in em(4) driver:Gleb Smirnoff2005-10-203-39/+39
* In the em_process_receive_interrupts() cycle check the IFF_DRV_RUNNINGGleb Smirnoff2005-10-191-1/+3
* - Use BUS_DMASYNC_PREWRITE in em_get_buf(), as the adapter is about to readOlivier Houchard2005-10-181-3/+4
* From the PR:Gleb Smirnoff2005-10-141-14/+14
* Cleanup from __FreeBSD_version.Gleb Smirnoff2005-10-141-73/+2
* - Don't pollute opt_global.h with DEVICE_POLLING and introduceGleb Smirnoff2005-10-051-0/+4
* Big polling(4) cleanup.Gleb Smirnoff2005-10-011-34/+37
* In em_process_receive_interrupts() store and clear adapter->fmt. ThisGleb Smirnoff2005-09-291-2/+4
* Remove bridge(4) from the tree. if_bridge(4) is a full functionalMax Laier2005-09-271-1/+0
* Remove queue check from last commit. In most cases there is smth in queue,Gleb Smirnoff2005-09-201-2/+1
* Check IFF_DRV_RUNNING and presense of packets in queue before callingGleb Smirnoff2005-09-201-1/+3
* Make sure that we call if_free(ifp) after bus_teardown_intr. Since weWarner Losh2005-09-191-1/+3
* Fix "Memory modified after free" panic on detach, caused by accessingRuslan Ermilov2005-09-141-3/+0
* Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson2005-08-091-17/+19
* Modify device drivers supporting multicast addresses to lock if_addr_mtxRobert Watson2005-08-031-1/+3
* Add missing ether_poll_deregister(). This is still not enough toRuslan Ermilov2005-08-021-0/+3
* Correct a minor typo.Xin LI2005-07-111-1/+1
* Stop embedding struct ifnet at the top of driver softcs. Instead theBrooks Davis2005-06-102-24/+24
* Latest README to correspond to latest Intel version 2.1.7Tony Ackerman2005-05-261-143/+124
* Changes to update driver with latest Intel driver version 2.1.7Tony Ackerman2005-05-265-525/+2500
* Run em_local_timer() once per second instead of running it once per 2 seconds.Gleb Smirnoff2005-04-051-4/+4
* Use BUS_PROBE_DEFAULT for pci probe return valueWarner Losh2005-03-051-2/+2
* Call if_link_state_change() when link status changes.Gleb Smirnoff2005-02-041-0/+4
* Respect the current setting of IFCAP_VLAN_HWTAGGING onYaroslav Tykhiy2005-01-261-5/+18
* Disable use of hardware VLAN tagging and stripping in if_em in the defaultRobert Watson2005-01-261-1/+1
* Convert if_em to the new bus_dmamap_load_sg() interface. The old callbackScott Long2005-01-152-39/+22
* Start each of the license/copyright comments with /*-, minor shuffle of linesWarner Losh2005-01-061-0/+2
* Corrected a workaround that should only be applied to one adapter. WorkaroundTony Ackerman2005-01-011-2/+14
* Added device id support for Intel 82541ER and 82546GB dual port PCIE adapter.Tony Ackerman2005-01-011-0/+2
* Further refine the if_em vlan fix in if_em.c:1.53:Robert Watson2004-11-141-4/+19
* Correct a bug in the if_em driver relating to the use of vlans withRobert Watson2004-11-122-6/+44
* Unbreak the build.Dag-Erling Smørgrav2004-11-111-0/+1
* Remove now-unused sysctl members.Bruce M Simpson2004-11-111-4/+0
* Move per-instance sysctls under the per-device-instance tree.Bruce M Simpson2004-11-111-23/+6
* Put the "Link is up/down" printfs behind bootverbose. gigE is not so uncommonPoul-Henning Kamp2004-11-031-6/+8
* Add missing bus_dmamap_sync() calls. If you are using an architectureMaxime Henrion2004-10-191-2/+12
* Use an alignment of 1 instead of PAGE_SIZE for the rx and tx buffer tags.Scott Long2004-10-191-12/+2
* Don't count RNBC (internal buffer full) towards the RX error count since it'sScott Long2004-10-091-1/+1
* Fix typeo. Should read ***!***IFQ_DRV_IS_EMPTY.Max Laier2004-09-291-1/+1