| Commit message (Expand) | Author | Age | Files | Lines |
| * | Move ethernet VLAN tags from mtags to its own mbuf packet header field | Andre Oppermann | 2006-09-17 | 1 | -9/+6 |
| * | - Consistently use if_printf() only in interface methods: if_start(), | Gleb Smirnoff | 2006-09-15 | 1 | -18/+21 |
| * | Make 8139C+ work again which was broken since rev 1.68. | Pyun YongHyeon | 2006-09-08 | 1 | -0/+8 |
| * | Fix re(4) breakge introduced in tree from rev 1.68. | Pyun YongHyeon | 2006-08-03 | 1 | -6/+5 |
| * | Another small update to the re(4) driver: | Bill Paul | 2006-08-01 | 1 | -23/+52 |
| * | Fix the following bugs in re(4) | Bill Paul | 2006-07-30 | 1 | -21/+32 |
| * | Properly detect the RTL8168(B?) again. RealTek sent me a bunch of sample | Bill Paul | 2006-06-28 | 1 | -1/+4 |
| * | Add support for the RealTek 8169SC/8110SC and RTL8101E devices. The | Bill Paul | 2006-06-26 | 1 | -137/+252 |
| * | Rename device name in the last commit. According to PR, the ID is | Gleb Smirnoff | 2006-05-24 | 1 | -3/+3 |
| * | Add support for RTL8111B chip, that can be found on some mainboards, | Gleb Smirnoff | 2006-03-22 | 1 | -0/+3 |
| * | Correctly switch IFCAP_VLAN_HWTAGGING on and off. | Gleb Smirnoff | 2006-03-03 | 1 | -6/+12 |
| * | Copy MAC address to fix alignment problems. | Bernd Walter | 2006-02-20 | 1 | -2/+8 |
| * | Do not touch ifp->if_baudrate in miibus aware drivers. | Gleb Smirnoff | 2006-02-14 | 1 | -4/+0 |
| * | - Fix VLAN_INPUT_TAG() macro, so that it doesn't touch mtag in | Gleb Smirnoff | 2005-12-18 | 1 | -2/+5 |
| * | Check IFF_DRV_RUNNING in the re_intr() loop. It can disappear, | Gleb Smirnoff | 2005-11-22 | 1 | -4/+6 |
| * | - Store pointer to the link-level address right in "struct ifnet" | Ruslan Ermilov | 2005-11-11 | 1 | -2/+2 |
| * | The controller -> device switch happened in 4.0, fix comment | Warner Losh | 2005-10-22 | 1 | -1/+1 |
| * | Only allow the sk(4) driver to attach to revision 2 of the LinkSys EG1032 | John Baldwin | 2005-10-14 | 1 | -0/+13 |
| * | - Don't pollute opt_global.h with DEVICE_POLLING and introduce | Gleb Smirnoff | 2005-10-05 | 1 | -0/+4 |
| * | Big polling(4) cleanup. | Gleb Smirnoff | 2005-10-01 | 1 | -40/+49 |
| * | - Use if_printf() and device_printf() in re(4) and remove rl_unit from | John Baldwin | 2005-09-29 | 1 | -54/+49 |
| * | Make sure that we call if_free(ifp) after bus_teardown_intr. Since we | Warner Losh | 2005-09-19 | 1 | -2/+2 |
| * | Don't recommend re_detach() (like in vr(4)) as another | Ruslan Ermilov | 2005-09-15 | 1 | -2/+1 |
| * | re_detach() fixes: | Ruslan Ermilov | 2005-09-15 | 1 | -15/+7 |
| * | In re_shutdown() mark interface as down since otherwise we will panic if | Maxim Sobolev | 2005-08-18 | 1 | -0/+7 |
| * | Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE and | Robert Watson | 2005-08-09 | 1 | -7/+7 |
| * | Recognize D-Link DGE-528(T) Gigabit as an re(4) device. | Anton Berezin | 2005-08-05 | 1 | -0/+2 |
| * | Modify device drivers supporting multicast addresses to lock if_addr_mtx | Robert Watson | 2005-08-03 | 1 | -0/+2 |
| * | Use correct pointer type. This should fix non-functional re(4) | Pyun YongHyeon | 2005-07-01 | 1 | -1/+1 |
| * | Move if_alloc() up so it's before mii_phy_probe(). | Brooks Davis | 2005-06-11 | 1 | -6/+7 |
| * | Stop embedding struct ifnet at the top of driver softcs. Instead the | Brooks Davis | 2005-06-10 | 1 | -14/+23 |
| * | Remove bus_{mem,p}io.h and related code for a micro-optimization on i386 | Yoshihiro Takahashi | 2005-05-29 | 1 | -2/+0 |
| * | Unbreak build with POLLING. I should really listen and test with NOTES | Max Laier | 2005-03-13 | 1 | -1/+1 |
| * | ALTQ support for re(4). | Max Laier | 2005-03-12 | 1 | -6/+14 |
| * | Use BUS_PROBE_DEFAULT in preference to 0 and BUS_PROBE_LOW_PRIORITY in | Warner Losh | 2005-03-01 | 1 | -1/+1 |
| * | Bring in support for SUGOI LAN GIGA NIC made by System TALKS, Inc from | Warner Losh | 2005-01-22 | 1 | -0/+3 |
| * | Start each of the license/copyright comments with /*-, minor shuffle of lines | Warner Losh | 2005-01-06 | 1 | -1/+1 |
| * | Disable checksum offloading by default. It seems to produce corrupted packets | Olivier Houchard | 2005-01-05 | 1 | -2/+2 |
| * | In re_detach(), remove an extra call to ether_ifdetach(). | Olivier Houchard | 2005-01-02 | 1 | -1/+0 |
| * | fix jumbo frames as much as they can be fixed for re. We now cap the MTU | John-Mark Gurney | 2004-09-28 | 1 | -16/+54 |
| * | trim trailing white space.. | John-Mark Gurney | 2004-09-20 | 1 | -2/+2 |
| * | spell RX correctly | John-Mark Gurney | 2004-09-19 | 1 | -16/+10 |
| * | pass in pointer to m_head to re_encap because m_defrag could free the | John-Mark Gurney | 2004-09-18 | 1 | -13/+13 |
| * | Fixed build with DEVICE_POLLING defined. | Ruslan Ermilov | 2004-09-04 | 1 | -2/+2 |
| * | merge in if_rl locking because if_re was originally based upon if_rl. | John-Mark Gurney | 2004-09-03 | 1 | -84/+135 |
| * | Add support Corega CG-LAPCIGT Gigabit Ethernet(8169S) | MIHIRA Sanpei Yoshiro | 2004-08-28 | 1 | -0/+2 |
| * | Eliminate unneeded return keywords. | Bruce M Simpson | 2004-07-06 | 1 | -34/+1 |
| * | Whitespace pass | Bruce M Simpson | 2004-07-06 | 1 | -54/+54 |
| * | Remove code to slam the config space on transition to d0. | Warner Losh | 2004-06-28 | 1 | -56/+0 |
| * | Replace handrolled CRC calculation with ether_crc32_[lb]e(). | Christian Weisgerber | 2004-06-09 | 1 | -29/+2 |