summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2008-01-24Finish the beep(4) driver by hooking it up to the ukbd(4) beep handlerRobert Nagy
and disable the one second long beep on attach. ok miod@
2008-01-24provide an external hook for beeper devices just like pckbd(4) doesRobert Nagy
ok miod@
2008-01-24Oops, make fit in 80 cols.Marco Peereboom
2008-01-24Add IO path to RAID 0 discipline.Marco Peereboom
2008-01-24KNFMarco Peereboom
2008-01-24"read(..., ..., sizeof Y) < sizeof Y" is a dangerous idiom because itKenneth R Westerback
does an unsigned comparison and read() can return -1. Use '!=' instead of '<' since read() can't return more than 'sizeof Y'. Not perfect (that would require a separate test for -1) but a very common usage. ok toby@
2008-01-23Cleanup cn_pri. Change constants to more meaningful names, rather thanJoel Sing
the hp300 related ones currently in use. CN_NORMAL becomes CN_LOWPRI, CN_INTERNAL becomes CN_MIDPRI and CN_REMOTE becomes CN_HIGHPRI. ok miod@
2008-01-22- Fix some ifconfig up / down tweaks.Marcus Glocker
- Make monitor mode work again. - Enable fast channel switching.
2008-01-22with a lot of fragments per cylinder group and lots of cylinderOtto Moerbeek
groups, it is possible that fpg * ncg overflows an int. Problem seen by jared rr spiegel while playing with very small fragments on a large disk. ok krw@ millert@
2008-01-22Added change to parseop to support return value; removes 1/2 stack depth forJordan Hargrave
parseint ok marco@
2008-01-22add Y.C. Cable USB-Serial adapterOkan Demirmen
ok jsg@
2008-01-22regenOkan Demirmen
2008-01-22add Y.C. Cable USB vendorOkan Demirmen
ok jsg@
2008-01-22Fix a double VOP_UNLOCK() that was introduced into the error pathTodd C. Miller
in rev 1.141. From Christian Ehrhardt and Pedro Martelletto. OK hshoexer@ miod@
2008-01-22Add splnet around mii_tick() in rl_tick().Brad Smith
ok dlg@
2008-01-21use the right capitalization for `QLogic'Igor Sobrado
ok jsing@
2008-01-21Add shutdown hook which resets the device when called. This solvesMarcus Glocker
re-attach issues when rebooting with upgt attached.
2008-01-21Add support for SMC SMCWUSBT-G2.Jonathan Gray
Tested by Kaspo Lo <kaxpolox@yahoo.com>
2008-01-21regenJonathan Gray
2008-01-21add SMC SMCWUSBT-G2Jonathan Gray
2008-01-21Check against RESET_REG_SUP in FADT before doing the acpi reset danceJonathan Gray
after all, not doing so appears to break more machines than it fixes. ok marco@
2008-01-21Fix boot time interrupt storm on mec(4) by disabling DMA when stopping theJoel Sing
interface. Without this we are potentially freeing TX buffers that are in use, plus we leave DMA enabled when rebooting. This leads to an interrupt storm at boot time if we were receiving/transmitting network traffic whilst shutting down. ok miod@. Tested by jasper@.
2008-01-20Remove obsolete rateset variables.Marcus Glocker
2008-01-20Cleanup rates:Marcus Glocker
- The device (firmware) does automatic rate control for 11b/g. - Allow user to set fixed rates. - Send management frames always at DS1.
2008-01-20Revert 1.25 and do not use _Q_INVALIDATE on timeout structures; beingMiod Vallat
subtly different from CIRCLEQ, it is possible, when emptying the whole timeout chain, to end up with CIRCQ_EMPTY being false, and bad things happen. Back to the drawing board...
2008-01-20debug kruftMarco Peereboom
2008-01-20Clean up comments.Joel Sing
2008-01-20Add temperature sensor.Mark Kettenis
2008-01-20Read EEPROM content the other way around (from start to end).Marcus Glocker
2008-01-20Adjust level 1 debug messages.Marcus Glocker
2008-01-20regenMarcus Glocker
2008-01-20Add one more device which could work. Fix comment typo in usbdevs whileMarcus Glocker
there.
2008-01-19Add initial scaffold for RAID 0. No IO just yet.Marco Peereboom
Much prodding todd
2008-01-19Fix add_net_randomness() not being called because the wrongMarco Pfatschbacher
bit in netisr is set. 1 != (1 << 1). Reported by mickey, fix by me. OK markus@, miod@, claudio@
2008-01-19Simplify CLKF_INTR by making it look at the saved interrupt level,Mark Kettenis
instead of the stack pointer.
2008-01-19When I say commented out, I should comment it out before comitting.Mark Kettenis
2008-01-19Add commented out entry for environ(4).Mark Kettenis
2008-01-19Remove printf that doesn't make sense.Marco Peereboom
2008-01-19Activate upgt(4) for macppc. Tested for a while on my PowerBook.Marcus Glocker
OK dlg@
2008-01-19Make host bridges provide their own implementation of pci_conf_read() andMark Kettenis
pci_conf_write() and give pyro(4) an implementation suitable for PCIe. For psycho(4) and schizo(4), go back to the origional implementation. This gets rid of the 'tagshift' member of pci_chipset_tag_t, and clears the way for sun4v.
2008-01-19Make the device work again on big endian archs (after firmware upgrade).Marcus Glocker
Tested on macppc.
2008-01-18Print consoleness the canonical way.Mark Kettenis
2008-01-18Add LED support.Marcus Glocker
2008-01-18Add environ(4).Mark Kettenis
2008-01-18First attempt to write a driver for the environment device found onMark Kettenis
Enterprise 3000/3500/4000/4500/5000/5500/6000/6500.
2008-01-17Print names we get from the prom within double quotes.Mark Kettenis
ok marco@
2008-01-17Remove some #if;ed out code.Mark Kettenis
2008-01-17Fix RX queue stalling by regulary reading the device statistics (with aMarcus Glocker
firmware command). Doh! We can now reliable communicate in 11g. Took me about 3 weeks to find out (just had to say that).
2008-01-17Set if_baudrate with IF_Gbps(10);Thordur I. Bjornsson
ok dlg@
2008-01-17casts so this compiles on i386.Thordur I. Bjornsson
ok reyk