| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | oops. missed these conflicts in the previous commit | 2012-08-09 | 2 | -10/+13 | ||
| | | ||||||
| * | try to make sense of the firmware statistics by counting rx and tx erorrs | 2012-08-09 | 3 | -282/+87 | ||
| | | ||||||
| * | schedule a rx refill if the ring is empty, sprinkle some dma syncs | 2012-08-09 | 1 | -4/+13 | ||
| | | ||||||
| * | more htole conversions | 2012-08-09 | 1 | -4/+4 | ||
| | | ||||||
| * | remove internal queue stats, use if_* counters wherever possible | 2012-08-09 | 3 | -95/+14 | ||
| | | ||||||
| * | respect the mtu value that ifconfig sets | 2012-08-09 | 2 | -53/+44 | ||
| | | ||||||
| * | set a timeout in case the chip goes out to lunch | 2012-08-09 | 1 | -12/+25 | ||
| | | ||||||
| * | remove oce_dmamap_sync wrapper | 2012-08-09 | 2 | -11/+14 | ||
| | | ||||||
| * | Add support for BCM5717/19/20C PHYs. From Brad. | 2012-08-09 | 1 | -1/+7 | ||
| | | ||||||
| * | regen | 2012-08-09 | 1 | -2/+8 | ||
| | | ||||||
| * | Add BCM5717/19/20C PHYs. From Brad. | 2012-08-09 | 1 | -1/+4 | ||
| | | ||||||
| * | call m_cluncount to account correctly for cluster chains the driver | 2012-08-08 | 1 | -4/+6 | ||
| | | | | | builds upon receiving a jumbo frame. | |||||
| * | We're not going to loop in the rxeof refilling our ring as it would | 2012-08-08 | 2 | -11/+7 | ||
| | | | | | | | | | | work against the mclgeti algorithm and besides it doesn't make any difference if [repaired and] enabled since interrupt mitigation was fixed some time ago. So remove the leftovers altogether so that nobody would be tempted to use them. ok claudio, jsg | |||||
| * | remove rx debugging code | 2012-08-08 | 1 | -33/+1 | ||
| | | ||||||
| * | Convert from K&R to ISO function signatures. | 2012-08-08 | 1 | -107/+40 | ||
| | | | | | From Brad; no binary change on amd64. | |||||
| * | Make all *_device_*_start() functions (e.g. ohci_device_intr_start()) | 2012-08-07 | 3 | -4/+22 | ||
| | | | | | | | | | | | wait for an interrupt when the bus is in polling mode. Otherwise some devices like my YE-Data USB Floppy take a short sharp trip to ddb> at 'halt -p'. Most of the functions were already doing the wait. ok miod@. With modification that printf's become DPRINTF's. | |||||
| * | a bit of cleanup and a tx delay tweak | 2012-08-07 | 2 | -10/+7 | ||
| | | ||||||
| * | don't forget to set IFF_ALLMULTI; from brad | 2012-08-07 | 1 | -3/+4 | ||
| | | ||||||
| * | kill sc->promisc | 2012-08-06 | 2 | -15/+11 | ||
| | | ||||||
| * | Add support for 10Gb ethernet cards based on the Intel X540 chipset. | 2012-08-06 | 8 | -60/+1055 | ||
| | | | | | | | | The code was obtained from FreeBSD and tested on the hardware kindly donated by Tony Sarendal <tony () polarcap ! org>. Thanks a lot! ok jsg | |||||
| * | Remove a self-assignment, from Brad | 2012-08-05 | 1 | -2/+1 | ||
| | | ||||||
| * | PCI_PRODUCT_ATI_RADEON_X1250 -> PCI_PRODUCT_ATI_RADEON_X1250_{1,2} | 2012-08-04 | 1 | -2/+4 | ||
| | | | | | prodded by matthieu@ | |||||
| * | Regen. | 2012-08-04 | 2 | -4/+9 | ||
| | | ||||||
| * | 0x7942 is also a Radeon Xpress 1500 | 2012-08-04 | 1 | -2/+3 | ||
| | | | | | ok matthieu@ | |||||
| * | add HUAWEI E392, tested by Alexei Malinin | 2012-08-03 | 1 | -1/+2 | ||
| | | ||||||
| * | regen | 2012-08-03 | 2 | -4/+9 | ||
| | | ||||||
| * | HUAWEI E392 | 2012-08-03 | 1 | -1/+2 | ||
| | | ||||||
| * | get rid of some "capabilities" leftovers | 2012-08-02 | 2 | -6/+3 | ||
| | | ||||||
| * | we use a central pci database; no reason to keep duplicates around | 2012-08-02 | 1 | -11/+1 | ||
| | | ||||||
| * | Add a driver for Emulex OneConnect 10Gb Ethernet obtained from FreeBSD | 2012-08-02 | 5 | -1/+9218 | ||
| | | | | | | | | | | but heavily massaged to look like other BSD network drivers. Support is provided for cards based on the following controllers: o ServerEngines BladeEngine 2 o ServerEngines BladeEngine 3 o Emulex Lancer | |||||
| * | regen | 2012-08-02 | 2 | -2/+12 | ||
| | | ||||||
| * | Emulex Lancer (XE201) | 2012-08-02 | 1 | -1/+3 | ||
| | | ||||||
| * | Revert previous change, and don't set IFM_AVALID | IFM_ACTIVE in ifm_status | 2012-07-30 | 1 | -3/+1 | ||
| | | | | | | to appease dhcpd, as dhcpd has now been fixed to not require this. repeated prodding and special ok deraadt@ | |||||
| * | whitespace cleanup, no binary change | 2012-07-29 | 8 | -624/+621 | ||
| | | ||||||
| * | When reporting media state, be sure to set IFM_AVALID and IFM_ACTIVE in | 2012-07-25 | 1 | -1/+3 | ||
| | | | | | | | | | ifm_status, for dhclient's sake. Current dhclient interface_status() considers interfaces able to report media information but not returning IFM_AVALID as down. Note that these interfaces usually have mii(4) or have specific code reporting correct values; sparc le(4) is an exception. Found the hard way by sebastia@; joint work with krw@, ok deraadt@ | |||||
| * | Fix for ClickPad. On issue pointed gilles@ and matthieu@ | 2012-07-22 | 4 | -7/+19 | ||
| | | | | | ok gilles@, matthieu@, mpi@, miod@, deraadt@ | |||||
| * | regen | 2012-07-20 | 2 | -7/+112 | ||
| | | ||||||
| * | add some more 7 series/ivy bridge ids | 2012-07-20 | 1 | -3/+24 | ||
| | | | | | tweaked and expanded version of a diff from Seth Wright. | |||||
| * | match on Mobility Radeon HD2600 | 2012-07-20 | 1 | -1/+3 | ||
| | | | | | from Denis Lapshin, ok deraadt@ | |||||
| * | sync | 2012-07-18 | 2 | -2/+22 | ||
| | | ||||||
| * | Additional Broadcom NIC PCI ids. From Brad. | 2012-07-18 | 1 | -1/+5 | ||
| | | ||||||
| * | Unify use of tabs/spaces on product lines. From Brad. | 2012-07-18 | 1 | -28/+28 | ||
| | | ||||||
| * | Revert my previous change for rt2661. It is causing excessive "ral0: device | 2012-07-17 | 2 | -19/+5 | ||
| | | | | | timeout" messages on my soekris and doesn't fix the real problem. | |||||
| * | Add the Huawei Mobile E303. | 2012-07-17 | 4 | -6/+13 | ||
| | | | | | | | From Andreas Bartelt, obsd AT bartula DOT de OK sthen@ | |||||
| * | regen | 2012-07-17 | 2 | -0/+52 | ||
| | | ||||||
| * | add a bunch of devices found in different laptops and desktops. | 2012-07-17 | 1 | -1/+13 | ||
| | | | | | ok sthen@ | |||||
| * | Add shorter form function aml_node_setval() for setting an int | 2012-07-16 | 2 | -3/+20 | ||
| | | | | | | on an AML node. Shortens the tricky code in a lot of callers. Earlier version seen by pirofti and kettenis. | |||||
| * | Try to avoid using the same wchan name twice. | 2012-07-13 | 1 | -2/+2 | ||
| | | ||||||
| * | Add support compose LED on a usb keyboard | 2012-07-13 | 3 | -4/+10 | ||
| | | | | | ok mpi@, from Alexander Polakov <polachok at gmail dot com> | |||||
| * | Disable acpivideo(4) on ASUS laptops. | 2012-07-13 | 2 | -5/+9 | ||
| | | | | | | | | | There are some models that panic whenever an event is received. Some cope, some don't. In order to get this right acpiec(4) requires major rework. Until then let machines boot. Discussed with deraadt@. | |||||
