summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-12-21support Avlab PCI 2S as a puc; from nicm__@ntlworld.comTheo de Raadt
2006-12-21appease the groff beast;Jason McIntyre
2006-12-21Fix a realloc-style bug (curmap = reallocmap(curmap)) inKjell Wooding
keymap repapping. spotted by theo
2006-12-21Eliminate BSMAP #ifdef (we didn't define it). This exposes bsmap-mode,Kjell Wooding
which swaps ^H and DEL. ok jason@
2006-12-21Unbreak redistribute default and make it possible to specify a metric forClaudio Jeker
the default route as well. OK norby@, michele@
2006-12-21order variables by size/type.Claudio Jeker
2006-12-21- PATCH_SITES -> PATCHSITESAntoine Jacoutot
ok bernd@
2006-12-21Let watchdogd use the new watchdog(4) semantics. When the new option -nMarc Balmer
(no restore) is specified, the watchdog will not be restored to it's original values when watchdogd terminates. that means, when watchdogd is run with -n and you 'halt' the system, the watchdog hardware will reset it. which is wanted when the machine is remote and the system shuts down unplanned. "looks ok" markus
2006-12-21- plug memleak in rcs_parse_delta()Niall O'Higgins
same as opencvs diff, ok xsa@
2006-12-21Check for overflow of others_len. This can not happen at the moment becauseClaudio Jeker
less than 255 attributes can be allocated at max. OK claudio@
2006-12-21- plug memory leak in rcs_parse_delta()Niall O'Higgins
ok joris@ ray@
2006-12-21- plug memory leak in rcs_translate_tag()Niall O'Higgins
ok joris@ ray@
2006-12-21- plug memory leak in rcs_patch_lines()Niall O'Higgins
ok joris@ ray@
2006-12-21Tweak to report full battery.Marco Peereboom
2006-12-21Change the semantics of kern.watchdog.auto slightly: If kern.watchdog.auto isMarc Balmer
set to 0, the watchdog will not be retriggered by the kernel *and* it will not be disabled at system shutdown time (before it got disabled at system shutdown time.) ok markus mickey mk
2006-12-21in pf_route(), initialize ro to NULL at the beginning. if left un-Daniel Hartmeier
initialized, it might equal &iproute by chance, causing a panic when rtfree() is then mistakenly called.
2006-12-21regenMichael Shalayeff
2006-12-21another radeon x1600; from formMichael Shalayeff
2006-12-21spacingTheo de Raadt
2006-12-21more knfTheo de Raadt
2006-12-21more minor knfTheo de Raadt
2006-12-21Remove some leftover acpiec gpe/interrupt code.Marco Peereboom
2006-12-21Remove some more remnants of old acpiec_wait function.Marco Peereboom
Rename acpiec_wait_nosleep to acpiec_wait since the old sleeping function is gone anyway. Redo waiting loop to shave some more bytes of. Tabing, spacing and some more KNF.
2006-12-21KNFMarco Peereboom
2006-12-21re_fixup_rx() is a no-op function, other than copying data to the same ↵Dale Rahn
address, thus slowing down the driver on __STRICT_ALIGN archs, remove. ok deraadt@
2006-12-21Fix silly logic errors.Marco Peereboom
2006-12-21Silence acpibat significantly and shave off about 1k. Also add some smartsMarco Peereboom
for battery removal and insertion.
2006-12-21'immediatly' -> 'immediately' in comments.Kenneth R Westerback
2006-12-21'tranfer' -> 'transfer' in comments.Kenneth R Westerback
2006-12-21Fix some comment typos. 'immediatly' -> 'immediately', 'tranfer' ->Kenneth R Westerback
'transfer', 'tranfered' -> 'transferred'.
2006-12-21ECs are weird in that they generate many interrupts. One for the actualMarco Peereboom
event and a bunch while doing reads and writes. Now that we have reworked the interrupt code it is no longer workable to catch both in the same handler. So from now on no longer sleep but simply delay. Removed the sleep wait function completely to save some bytes too. Worst meassured delay was 160us. These events are infrequent (pulling ac cable etc).
2006-12-20remove debug message inserted in last commitTheo de Raadt
2006-12-20Don't use err as labels or variables, especially since we includeRay Lai
err.h. OK moritz@ and jaredy@.
2006-12-20Decalre extern int cpuspeed in sys/arch/amd64/include/cpu.h like cpuspeedGordon Willem Klok
is declared in the equivalent file on i386 and delete the repeticious declarations already scattered in a few places. Thanks to Will Backman for letting me test this on his machine, ok mk@
2006-12-20nearly complete knfTheo de Raadt
2006-12-20Set IFM_ETH_MASTER if local PHY configuration resolved to MASTER.Mark Kettenis
ok deraadt@, brad@
2006-12-20kjell loves his extra spacesTheo de Raadt
2006-12-20Get rid of CVMVAS define. Originally to change pgforw/back parameterKjell Wooding
from pages to lines. We don't use it.
2006-12-20since auto-execute expects a function name at the "Execute:" prompt anyway,Kjell Wooding
enable autocomplete for that field.
2006-12-20kill an ill-formed (and totally unnecessary) realloc.Kjell Wooding
Spotted by theo.
2006-12-20syncTheo de Raadt
2006-12-20add atheros idsTheo de Raadt
2006-12-20Don't bail out on a bad interrupt line if we have a valid apic interrupt pinMark Kettenis
for a pci device.
2006-12-20first steps of knf (trying not to step on jordan's feet too much); ok marcoTheo de Raadt
2006-12-20"#ifdef is a tool of the weak!"Gordon Willem Klok
Rename pentium_mhz to cpuspeed which is consistant with amd64 making shared ACPI code less nasty. ok marco, deraadt
2006-12-20oops, name already usedTheo de Raadt
2006-12-20skip the perfect hash for now since it wastes a lot of kernel memory,Theo de Raadt
and fails to fit onto the floppies. for now, do a linear search, but someone should sort the instructions and use bsearch; ok marco
2006-12-20rename __acpi_enable_gpe(); ok marcoTheo de Raadt
2006-12-20acpi_unmap_pmregs() is not used, ok marcoTheo de Raadt
2006-12-20let ntpd use sensors immediately after system boot by special casingHenning Brauer
last_sensor_scan == 0. monotime might be very close to 0 after boot. source unknown, maybe from naddy, rediscovered & ok mblamer