| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix the interrupt handler to do the mandatory PCI flush before looking at | Scott Long | 2006-04-15 | 1 | -14/+10 |
| * | Correct an obvious typo. | Pawel Jakub Dawidek | 2006-04-12 | 1 | -1/+1 |
| * | Remove dead code. | Gleb Smirnoff | 2006-03-17 | 1 | -2/+0 |
| * | 1) Ignore link events for MII/GMII cards if MI auto-polling disabled. This | Oleg Bulyzhin | 2006-02-17 | 1 | -4/+14 |
| * | Enable 'complete' rx checksum offloading (i.e. let chip calculate checksums | Oleg Bulyzhin | 2006-02-02 | 1 | -2/+3 |
| * | Optimize bge_rxeof() & bge_txeof(): return immediately if there are no packets | Oleg Bulyzhin | 2006-02-01 | 1 | -4/+10 |
| * | Since bge_rxeof() & bge_txeof() depends on status block data it should be | Oleg Bulyzhin | 2006-02-01 | 1 | -14/+16 |
| * | 1) Fix link state detection for cards operating in TBI mode (fiber ones) | Oleg Bulyzhin | 2006-02-01 | 2 | -25/+31 |
| * | Setting IFF_ALLMULTI on a running interface didn't call bge_setmulti() | Ruslan Ermilov | 2006-02-01 | 1 | -1/+4 |
| * | This driver can do hardware VLAN tagging + checksum offloading. | Gleb Smirnoff | 2006-01-30 | 1 | -1/+2 |
| * | Use m_getcl() instead of getting mbuf, and then getting a cluster. | Gleb Smirnoff | 2006-01-23 | 1 | -9/+2 |
| * | Check for BGE_RXBDFLAG_IP_CSUM flag before marking mbuf as with valid | Gleb Smirnoff | 2006-01-21 | 1 | -4/+5 |
| * | Be ready to a case when not a constant number of segments is returned | Gleb Smirnoff | 2006-01-18 | 2 | -13/+23 |
| * | - Count packets discarded by RX/TX MAC (cause of FIFO overflow, etc) | Oleg Bulyzhin | 2006-01-17 | 2 | -28/+32 |
| * | Don't base the number of jumbo segments on page size, instead base it on the | Scott Long | 2006-01-14 | 1 | -1/+1 |
| * | 1) move all link state detection code from bge_tick_locked() to bge_link_upd() | Oleg Bulyzhin | 2006-01-13 | 1 | -60/+101 |
| * | Use device_printf() and if_printf() rather than printf() and axe | Pyun YongHyeon | 2005-12-23 | 2 | -53/+51 |
| * | - All bge(4) supported hardware is known to support RX/TX checksum offloading, | Gleb Smirnoff | 2005-12-22 | 1 | -10/+69 |
| * | Fix bge_eeprom_getbyte() to return 1 when timeout happens. | Pyun YongHyeon | 2005-12-22 | 1 | -3/+8 |
| * | Add bge(4) support for big-endian architectures(part 2/2). | Pyun YongHyeon | 2005-12-22 | 1 | -92/+75 |
| * | Since BGE_MBX_TX_HOST_PROD0_LO register is write-only to software, | Gleb Smirnoff | 2005-12-18 | 2 | -4/+11 |
| * | - Fix VLAN_INPUT_TAG() macro, so that it doesn't touch mtag in | Gleb Smirnoff | 2005-12-18 | 1 | -2/+5 |
| * | o Rewrite bge_encap() to use bus_dmamap_load_mbuf_sg(9), inlining the | Gleb Smirnoff | 2005-12-15 | 1 | -82/+55 |
| * | Add bge(4) support for big-endian architectures(part 1/2). | Pyun YongHyeon | 2005-12-15 | 2 | -88/+139 |
| * | In bge_link_upd(), rewrite the logic so that status is assigned | Marcel Moolenaar | 2005-12-13 | 1 | -4/+2 |
| * | A big rewrite of receive Jumbo frame handling. Remove the local Jumbo | Gleb Smirnoff | 2005-12-08 | 2 | -248/+75 |
| * | 1) fix tiny bug in bge_start_locked() | Oleg Bulyzhin | 2005-12-08 | 1 | -105/+115 |
| * | If bus_dmamap_load() failed, we free the mbuf. We also need to clear | Gleb Smirnoff | 2005-11-30 | 1 | -2/+6 |
| * | Recognize Broadcom BCM5752 chip, that can be found in HP DC7600. | Gleb Smirnoff | 2005-11-15 | 2 | -2/+7 |
| * | - Store pointer to the link-level address right in "struct ifnet" | Ruslan Ermilov | 2005-11-11 | 1 | -4/+4 |
| * | Introduce polling(4) capability for bge(4). | Gleb Smirnoff | 2005-10-22 | 2 | -2/+113 |
| * | Replace FreeBSD 3.x syntax (controller miibus0) with 4.x syntax | Warner Losh | 2005-10-22 | 1 | -1/+1 |
| * | Implement suspend/resume methods to be more ACPI friendly. | Pawel Jakub Dawidek | 2005-09-28 | 1 | -0/+36 |
| * | Fix "struct ifnet" leaks when attach() fails in the middle. | Ruslan Ermilov | 2005-09-16 | 1 | -2/+3 |
| * | When bge_stop() is called from bge_detach(), mii is already NULL, so check | Pawel Jakub Dawidek | 2005-09-04 | 1 | -5/+10 |
| * | Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE and | Robert Watson | 2005-08-09 | 1 | -15/+16 |
| * | Modify device drivers supporting multicast addresses to lock if_addr_mtx | Robert Watson | 2005-08-03 | 1 | -0/+2 |
| * | Backout the change I made before 5.4-R since I wasn't aware that it was only | Doug White | 2005-06-24 | 1 | -0/+21 |
| * | Stop embedding struct ifnet at the top of driver softcs. Instead the | Brooks Davis | 2005-06-10 | 2 | -31/+40 |
| * | Remove bus_{mem,p}io.h and related code for a micro-optimization on i386 | Yoshihiro Takahashi | 2005-05-29 | 1 | -1/+0 |
| * | Add PCI ID for BCM5789. | Mike Silbersack | 2005-05-22 | 2 | -0/+3 |
| * | Support the 5714C | Paul Saab | 2005-05-19 | 2 | -0/+12 |
| * | Backout part of rev 1.71, which breaks the interfaces on IBM/Intel blade | Doug White | 2005-05-05 | 1 | -17/+0 |
| * | Fix the order of the lowaddr,highaddr arguments in the parent tag. This | Scott Long | 2005-04-24 | 1 | -1/+1 |
| * | Adding new device ID for BCM5751M support. | Tai-hwa Liang | 2005-03-12 | 2 | -0/+3 |
| * | Start each of the license/copyright comments with /*-, minor shuffle of lines | Warner Losh | 2005-01-06 | 2 | -2/+2 |
| * | Add support for the 5721 which seems to be similar to the 5750/5751. | Paul Saab | 2004-12-17 | 2 | -0/+3 |
| * | Don't force busdma to pre-allocate bounce pages for the parent tag. | Scott Long | 2004-11-21 | 1 | -2/+2 |
| * | Hide link up/down/media printfs behind bootverbose | Poul-Henning Kamp | 2004-11-08 | 1 | -5/+7 |
| * | With ALTQ, it is possible that although the queue was not empty when we | Dag-Erling Smørgrav | 2004-10-30 | 1 | -0/+7 |