Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-03-05 | Demacro the inteldrm ring macros too, making them use bus_space_write | Owain Ainsworth | |
instead of assuming BUS_SPACE_LINEAR + bus_space_vaddr while i'm at it. Cleans things up nicely, and shaves a little bit of space, too. | |||
2009-03-05 | De-macro the ring manipulation macros in favour of functions. Saves a | Owain Ainsworth | |
large pile of space. Tested by several, thanks. | |||
2009-03-05 | Additional paranoia for the indirect buffer checking. | Owain Ainsworth | |
2009-03-05 | Do a similar thing to inteldrm re removing the old vblank crtc | Owain Ainsworth | |
inferfaces. Shrinks the code. | |||
2009-03-05 | Kill a bunch of (long long long) dead ioctls. | Owain Ainsworth | |
Shaves some bytes. | |||
2009-03-05 | Remove the stats_boxes counters and associated code from radeondrm. | Owain Ainsworth | |
They're really not all that useful. | |||
2009-03-05 | Add support for IBM ServeRAID-8k. Thanks to Sergey Prysiazhnyi | Alexander Yurchenko | |
<apelsin@atmnis.com> for patiently testing my numerous diffs. ok deraadt@ | |||
2009-03-05 | Bump bus space size limit to fit all possible registers of the roket | Alexander Yurchenko | |
chipset. ok deraadt@ | |||
2009-03-05 | Rip out old fieldio code (no longer used) | Jordan Hargrave | |
ok marco@ | |||
2009-03-05 | New ACPI fieldio routines | Jordan Hargrave | |
Fix for PR6017, tested extensively on @tech ok marco@ | |||
2009-03-04 | don't bus_space_unmap() sc->mt_ioh with the wrong bus tag | Alexandre Ratchov | |
from Alexandr Shadchin <ShadchinAV(at)mail.ru>, Thanks! | |||
2009-03-03 | Make sure the scsi_xfer timeout is triggered while the command is still alive. | Miod Vallat | |
With the current code, a fast command could complete between splx and the timeout being triggered, we'd then happily return COMPLETE, reuse the scsi_xfer, schedule the timeout again, causing a nice cycle in the timeout wheels. (I know, I know, I have to inspect all other scsi drivers now, but I'm really tired after spending three hours on this) | |||
2009-03-03 | shorten sizes of variables to the required number of bits, and remove | Theo de Raadt | |
unused variables, tested by todd ok kettenis | |||
2009-03-03 | attempt support for a single-port variant of the NetMos NM9835 by looking | Theo de Raadt | |
at the subsystem id first ok kettenis | |||
2009-03-03 | regen | Alexander Yurchenko | |
2009-03-03 | Add IBM Remote Supervisor Adapter found on lpinto's machine. | Alexander Yurchenko | |
2009-03-03 | regen | Kevin Lo | |
2009-03-03 | more RealTek RTL8187 based devices | Kevin Lo | |
ok jsg@ | |||
2009-03-01 | Switch more info printfs to debug. The average user doesn't want to see | Owain Ainsworth | |
them. Prompted by deraadt@ | |||
2009-03-01 | Time to turn off debug by default. It shrinks ramdisk as a bonus. | Alexander Yurchenko | |
2009-03-01 | Add sensors support. | Alexander Yurchenko | |
2009-03-01 | - add missing letoh32 | Alexander Yurchenko | |
- tweak product string | |||
2009-02-27 | 0x3 is not really a good number for bit flags. Should fix the Logitech | Marcus Glocker | |
QuickCam OEM attachment finally. OK deraadt@ | |||
2009-02-27 | set interrupt moderation timer for tx; otherwise interrupt always for tx | Kevin Lo | |
ok deraadt@ | |||
2009-02-26 | If acx_attach() fails, print the reason why it is failing. | Stefan Sperling | |
Amendment to fix for PR6089. Patch by mglocker@ "good night guys!" mglocker@, "hurry up" deraadt@ | |||
2009-02-26 | Fix PR6089, "panic in acx_detach upon card eject". | Stefan Sperling | |
Only call acx_detach() if acx_attach() was successful. ok mglocker@, "hurry up" deraadt@ | |||
2009-02-26 | fix the multicast code; tested by sthen@ | Kevin Lo | |
ok deraadt@ | |||
2009-02-25 | Fix up multicast support, from brad. | Jonathan Gray | |
ok deraadt@ | |||
2009-02-25 | On full mask revision 2 or later default to | Jonathan Gray | |
16QW for "FIFO Threshold for processing next packet" to increase compatibility with different PCI-E implementations as advised by the datasheet. The 64WQ and 128WQ options are obsolete on full revision mask >= 2 as well. From Pyun YongHyeon in FreeBSD via brad. ok deraadt@ | |||
2009-02-25 | add Atheros AR8121/AR8113/AR8114 Ethernet controller(also known as L1E). | Kevin Lo | |
written by Pyun YongHyeon for FreeBSD, ported to DragonFlyBSD by Sepherosa Ziehau and then ported to OpenBSD by me. ok deraadt@ | |||
2009-02-24 | The original SiS chips seem to have an bug that marks VLAN tagged packets | Claudio Jeker | |
with an rx error (SIS_RXSTAT_GIANT) eventhough everything is fine. Change code to clear this error on RX if the size of the packet is smaller then 1532 bytes. From FreeBSD via Brad. Tested on the more common National chips by me. Ok deraadt@ | |||
2009-02-24 | move AnyDATA ADU-E100H to umsm(4) from ubsa(4) as it uses msm chipset. | Yojiro Uo | |
reported by denis1482 | |||
2009-02-24 | back out est.c 1.8 and bring acpicpu.c all the way back to 1.47 because of | Theo de Raadt | |
hanging machines. backed out correctly this time, as pointed out by tedu. | |||
2009-02-24 | Backout a backout because noone knows what the hell the backout is a | Theo de Raadt | |
backout of. COME ON. Be exact in your commit messages. | |||
2009-02-23 | regen | Jonathan Gray | |
2009-02-23 | Match on the SAS1078DE which appears to be used in at least the | Jonathan Gray | |
ServeRAID-MR10is. While here remove duplicate entries for SAS1078/PERC6 which are the same id, both with a SYMBIOS (LSI) vendor id and same product id (0x0060). ok marco@ dlg@ deraadt@ | |||
2009-02-23 | - fix test for IPv4 checksum | Kevin Lo | |
- change age_get_macaddr() prototype(no functional change) and set smb pointers to NULL for consistency - clean up and fix the multicast code; from Brad - When the attach routine failed, release all resources including interrupts, interrupt handler, and DMA memory Tested by couderc@ and giovanni <qgiovanni at gmail dot com> ok deraadt@ | |||
2009-02-22 | Make Yukon-2 FE+ (88E8040, 88E8042) work. | Mark Kettenis | |
ok deraadt@ | |||
2009-02-22 | Make 88E3016 actually work. | Mark Kettenis | |
2009-02-22 | Untested FB-DIMM decoding adapted from changes made to NetBSD | Jonathan Gray | |
by Paul Goyette. ok deraadt@ | |||
2009-02-21 | overzealous cut/paste; found by Vladimir Kirillov <proger@uaoug.org.ua> | Marco Peereboom | |
2009-02-21 | Fix a kernel crash for bulk devices when closing the video stream; | Marcus Glocker | |
We give the kthread loop a moment to recognize that bulk_running=0 before we close the USB pipes. Otherwise it can happen that we close the USB pipes before the kthread loop stopped. | |||
2009-02-20 | Oops didn't mean for Debugger() to remain there. | Marco Peereboom | |
2009-02-20 | Let the sdmmc adapters tell the sdmmc layer how much sectors they can | Miod Vallat | |
transfer with one command. Build on this and the recent minphys() changes in the sdmmc layer to crank transfers at the maximum possible size instead of a sad DEV_BSIZE. Depending on your controller, this can speed up sdmmc I/O up to 2.5 times. | |||
2009-02-20 | Add Sony VGP-VCC9 Camera (Ricoh chipset) to the quirk list. | Marcus Glocker | |
2009-02-20 | regen | Marcus Glocker | |
2009-02-20 | Add Sony VGP-VCC9 Camera (Ricoh chipset). | Marcus Glocker | |
2009-02-20 | Add more Ricoh chipsets to the quirk list which could work. | Marcus Glocker | |
2009-02-20 | Don't attach non-UISUBCLASS_VIDEOCONTROL interfaces from some quirk | Marcus Glocker | |
devices. Problem reported by Jerome Pinot (QuickCam OEM). Also tested by deraadt@ with ricoh chipset. | |||
2009-02-20 | Bring NO_CCB to cac(4), which helps bio work better without | Kenneth R Westerback | |
generating worrying error messages. Or possibly losing i/o's. tested by jbg@ ok deraadt@ |