summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-06-17Move AMRR rate control algorithm out of wpi(4) and ural(4), into net80211.Damien Bergamini
ok brad@
2006-06-17Import frequency conrrection code from dragonfly, whith some changes:Otto Moerbeek
only do frequency compensation if the clock is synced, and a slightly diffent way of computing the linear regression. You'll need a recent kernel and libc to use this. Testing by naddy@ and ckuethe@ and others, thanks! ok henning@
2006-06-17Fix a bug that AUDIO_MIXER_READ returns an incorrectBrad Smith
mixer_ctrl_t::un.value.num_channels in the case of the combination of a mono pin and a stereo mixer. From kent NetBSD
2006-06-17- re-enable AMRRDamien Bergamini
- unmap the good buffer in wpi_tx_intr
2006-06-17check return values of azalia_init_corb() and azalia_init_rirb().Brad Smith
From kent NetBSD
2006-06-17Don't return low level errors to userspace in p4tcc_setperf().Dimitry Andric
requested by deraadt@, ok gwk@
2006-06-17add sys/timeout.hBrad Smith
2006-06-17add sys/timeout.hBrad Smith
2006-06-17add sys/timeout.hBrad Smith
2006-06-17add sys/timeout.hBrad Smith
2006-06-17We do not have the xf and xb commands.Miod Vallat
2006-06-17In p4tcc, only check cpu stepping for the Pentium 4 family. Also killDimitry Andric
some trailing whitespace. ok gklok@
2006-06-17When multipath routes are inserted, ensure that RTF_MPATH is set for anyChristopher Pascoe
previous route that may not have been inserted with the -mpath flag. Similarly, when removing a multipath route and leaving only one route, clear the RTF_MPATH flag so this is clear. ok claudio@
2006-06-17Display multipath and jumbo flags in route get/monitor.Christopher Pascoe
ok claudio@
2006-06-17make dvmrpd(8) behave correctly on sparc64 when generating and parsingEsben Norby
route reports. help from claudio@
2006-06-17update in regard to cardbus, we support more than just this one TIFelix Kronlage
chipset, so remove the line stating that. requested by brad@
2006-06-17Refuse to mount a ffs fielsystems whose number of frags is not 1, 2, 4 or 8,Miod Vallat
and remove the corresponding panics in low level code. ok pedro@ weingart@
2006-06-17Introduce pmap_kenter_cache(), similar to pmap_kenter_pa() but allowingMiod Vallat
the pte cache bits to be specified. Will be used very soon.
2006-06-17Recent Powerbook systems have their on-board keyboard and mouse devicesMiod Vallat
also showing up as usb devices, but both devices are tied. To make things less confusing, do not attach the usb phantoms at all.
2006-06-17use the carp_demote_ioctl directly instead of carp_demote_set, ok claudioHenning Brauer
2006-06-17urgs, helps to commit everything, sorryHenning Brauer
2006-06-17adopt to extended rtrequest / rtalloc1 apiHenning Brauer
2006-06-17implement carp demotion control for bgpd.Henning Brauer
sessions can be configured to modify the carp demotion counter for a given interface group (usually, "carp", which has all carp interfaces) when the session is not established. once the session is established for 60 seconds, the demotion is cleared. this, used correctly, can prevent a bgpd-box which lost all sessions (and thus has no routes) to be carp master, while the backup has sessions. thought through and partially hacked on a drive from calgary to vancouver with ryan, ok claudio
2006-06-17udcf(4) no longer needs the file sys/dev/clock_subr.c to be compiled and linkedMarc Balmer
to the kernel, the two functions it used from this file are now included in the driver itself (like in nmea(4)). udcf(4) can now be enabled to the zaurus, too. in fact on all arches that have USB support.
2006-06-17make dvmrpd(8) capable of fetching interfaces correctly on sparc64.Esben Norby
2006-06-17KNFHenning Brauer
2006-06-17unbreak; from theoHenning Brauer
2006-06-17Do not leak file descriptor in error path. From Andrey MatveevHans-Joerg Hoexer
<evol at online dot ptt dot ru>, thanks!
2006-06-17add serial ports attached through PC Cards to the listFelix Kronlage
requested and ok martin@
2006-06-17Dont disable siop, add pcalcd, commented for now (no gpioctl on ramdisk).Dale Rahn
2006-06-17Add pcaled with it's gpio attachment. Make gpio at iopxs not be '0' but '*'Dale Rahn
dont bother disabling siop while here. Warning some gpio pins may be connected to dangerous functions like poweroff.
2006-06-17Driver for the Philips PCA9532 LCD dimmer controller, found on thecus.Dale Rahn
2006-06-17syncTheo de Raadt
2006-06-17remove some whitespace.Brad Smith
2006-06-17avoid missing events for timestamping (dcd change at same time as cts);Theo de Raadt
mrd@alkemio.org
2006-06-17syncTheo de Raadt
2006-06-16Add -DSAVECORE to CFLAGS instead of overriding it.Mark Kettenis
ok miod@, deraadt@
2006-06-16IS_VM_PHYSADDR is no longer used.Miod Vallat
2006-06-16When checking if a page is managed or not, do not invoke IS_VM_PHYSADDRMiod Vallat
and then pa_to_pvh, since they amount to the same work; instead let pa_to_pvh return NULL for unmanaged pages and test for this.
2006-06-16- add rum(4). commented out for now.Niall O'Higgins
2006-06-16From Markus Glockner <markus@nazgul.ch>, adds logging of refusalsBob Beck
and debug level logging of transfers to tftpd. all the work done by markus, I only tested and nitpicked. ok mbalmer@
2006-06-16- add rum(4), a driver for the next generation Ralink Technology USB 802.11a/b/gNiall O'Higgins
wireless network devices. not yet fully functional, putting it in the tree so others can hack on it too.
2006-06-16- add rt2573 microcode. mostly from jolan@.Niall O'Higgins
2006-06-16documentation on the registerJason Wright
2006-06-16skeleton driver for power button on u5.. does precisely nothing except attach.Jason Wright
Will hook it into the right places this weekend (and put it into GENERIC and write a man page when it does something useful).
2006-06-16Add comment warning not to rename _dl_bind, since gdb(1) knows about it.Mark Kettenis
ok (quite a while ago) drahn@
2006-06-16If we are configured for glass console but no keyboard is plugged, we runMiod Vallat
with the dummy wscons cngetc() which immediately returns zero. Since a cngetc() call is the only difference between halt and reboot, this caused the former to behave as the later. Fix this by spinning until cngetc() returns a non-zero value.
2006-06-16Fix range check in sgc_slottopa().Miod Vallat
2006-06-16Line 0 is not wired, thus illegal for use in frodo_intr_establish().Miod Vallat
2006-06-16Work around a problem with \$ expansion where \$\$ turned into pid ($$)Dale Rahn
expansion. otto and I cannot think of anything better. ok otto@