Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-01-24 | Finish the beep(4) driver by hooking it up to the ukbd(4) beep handler | Robert Nagy | |
and disable the one second long beep on attach. ok miod@ | |||
2008-01-24 | provide an external hook for beeper devices just like pckbd(4) does | Robert Nagy | |
ok miod@ | |||
2008-01-24 | Oops, make fit in 80 cols. | Marco Peereboom | |
2008-01-24 | Add IO path to RAID 0 discipline. | Marco Peereboom | |
2008-01-24 | KNF | Marco Peereboom | |
2008-01-24 | "read(..., ..., sizeof Y) < sizeof Y" is a dangerous idiom because it | Kenneth 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-23 | Cleanup cn_pri. Change constants to more meaningful names, rather than | Joel 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-22 | with a lot of fragments per cylinder group and lots of cylinder | Otto 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-22 | Added change to parseop to support return value; removes 1/2 stack depth for | Jordan Hargrave | |
parseint ok marco@ | |||
2008-01-22 | add Y.C. Cable USB-Serial adapter | Okan Demirmen | |
ok jsg@ | |||
2008-01-22 | regen | Okan Demirmen | |
2008-01-22 | add Y.C. Cable USB vendor | Okan Demirmen | |
ok jsg@ | |||
2008-01-22 | Fix a double VOP_UNLOCK() that was introduced into the error path | Todd C. Miller | |
in rev 1.141. From Christian Ehrhardt and Pedro Martelletto. OK hshoexer@ miod@ | |||
2008-01-22 | Add splnet around mii_tick() in rl_tick(). | Brad Smith | |
ok dlg@ | |||
2008-01-21 | use the right capitalization for `QLogic' | Igor Sobrado | |
ok jsing@ | |||
2008-01-21 | Add shutdown hook which resets the device when called. This solves | Marcus Glocker | |
re-attach issues when rebooting with upgt attached. | |||
2008-01-21 | Add support for SMC SMCWUSBT-G2. | Jonathan Gray | |
Tested by Kaspo Lo <kaxpolox@yahoo.com> | |||
2008-01-21 | regen | Jonathan Gray | |
2008-01-21 | add SMC SMCWUSBT-G2 | Jonathan Gray | |
2008-01-21 | Check against RESET_REG_SUP in FADT before doing the acpi reset dance | Jonathan Gray | |
after all, not doing so appears to break more machines than it fixes. ok marco@ | |||
2008-01-21 | Fix boot time interrupt storm on mec(4) by disabling DMA when stopping the | Joel 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-20 | Remove obsolete rateset variables. | Marcus Glocker | |
2008-01-20 | Cleanup 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-20 | Revert 1.25 and do not use _Q_INVALIDATE on timeout structures; being | Miod 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-20 | debug kruft | Marco Peereboom | |
2008-01-20 | Clean up comments. | Joel Sing | |
2008-01-20 | Add temperature sensor. | Mark Kettenis | |
2008-01-20 | Read EEPROM content the other way around (from start to end). | Marcus Glocker | |
2008-01-20 | Adjust level 1 debug messages. | Marcus Glocker | |
2008-01-20 | regen | Marcus Glocker | |
2008-01-20 | Add one more device which could work. Fix comment typo in usbdevs while | Marcus Glocker | |
there. | |||
2008-01-19 | Add initial scaffold for RAID 0. No IO just yet. | Marco Peereboom | |
Much prodding todd | |||
2008-01-19 | Fix add_net_randomness() not being called because the wrong | Marco Pfatschbacher | |
bit in netisr is set. 1 != (1 << 1). Reported by mickey, fix by me. OK markus@, miod@, claudio@ | |||
2008-01-19 | Simplify CLKF_INTR by making it look at the saved interrupt level, | Mark Kettenis | |
instead of the stack pointer. | |||
2008-01-19 | When I say commented out, I should comment it out before comitting. | Mark Kettenis | |
2008-01-19 | Add commented out entry for environ(4). | Mark Kettenis | |
2008-01-19 | Remove printf that doesn't make sense. | Marco Peereboom | |
2008-01-19 | Activate upgt(4) for macppc. Tested for a while on my PowerBook. | Marcus Glocker | |
OK dlg@ | |||
2008-01-19 | Make host bridges provide their own implementation of pci_conf_read() and | Mark 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-19 | Make the device work again on big endian archs (after firmware upgrade). | Marcus Glocker | |
Tested on macppc. | |||
2008-01-18 | Print consoleness the canonical way. | Mark Kettenis | |
2008-01-18 | Add LED support. | Marcus Glocker | |
2008-01-18 | Add environ(4). | Mark Kettenis | |
2008-01-18 | First attempt to write a driver for the environment device found on | Mark Kettenis | |
Enterprise 3000/3500/4000/4500/5000/5500/6000/6500. | |||
2008-01-17 | Print names we get from the prom within double quotes. | Mark Kettenis | |
ok marco@ | |||
2008-01-17 | Remove some #if;ed out code. | Mark Kettenis | |
2008-01-17 | Fix RX queue stalling by regulary reading the device statistics (with a | Marcus 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-17 | Set if_baudrate with IF_Gbps(10); | Thordur I. Bjornsson | |
ok dlg@ | |||
2008-01-17 | casts so this compiles on i386. | Thordur I. Bjornsson | |
ok reyk |