summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-02-12Back out per-CPU kernel profiling, it shouldn't modify a public headerMartin Pieuchot
at this moment.
2013-02-12Unbreak the tree by adding missing defines. Forgot to sync in previousMartin Pieuchot
spotted by todd@.
2013-02-11remove acss here tooDamien Miller
2013-02-11Add openssl version to debug output similar to the client. ok markus@Darren Tucker
2013-02-11syncMiod Vallat
2013-02-11Xr scan_ffs 8; requested by Scott McEachernJason McIntyre
2013-02-11tweak previous;Jason McIntyre
2013-02-11Sync with libkern's copy. No functional change.Martin Pieuchot
2013-02-11Teach kgmon(8) to deal with per-CPU kernel profiling.Martin Pieuchot
ok mikeb@, haesbaert@
2013-02-11Fix kernel profiling on MP systems by using per-CPU buffer. PreviouslyMartin Pieuchot
various CPUs were iterating over the same global buffer at the same time to modify it and never ended. This diff includes some ideas submited by Thor Simon to NetBSD via miod@. ok mikeb@, haesbaert@
2013-02-11Ignore sysctl failure for CPU_LIDSUSPEND when errno is EOPNOTSUPP.Todd C. Miller
Just because CPU_LIDSUSPEND is defined in cpu.h does mean it is actually supported by the hardware. OK halex@
2013-02-11When information about threads are not requested sum the '%cpu' ofMartin Pieuchot
all threads in a process instead of returning only the '%cpu' for the main thread. This makes top(1) display the correct percentage of CPU usage for threaded processes when theads are not displayed. ok sthen@, mikeb@
2013-02-11adjust boot-device to be more like what the installer tells you.Jasper Lievisse Adriaanse
ok mpi@
2013-02-10record "Received disconnect" messages at ERROR rather than INFO priority,Damien Miller
since they are abnormal and result in a non-zero ssh exit status; patch from Iain Morgan in bz#2057; ok dtucker@
2013-02-10append to moduli file when screening candidates rather than overwriting.Damien Miller
allows resumption of interrupted screen; patch from Christophe Garault in bz#1957; ok dtucker@
2013-02-10openssh 6.2Markus Friedl
2013-02-10switch m68k ports to gcc3Miod Vallat
2013-02-10update the internal pcre to 8.32Robert Nagy
2013-02-10Don't wait for memory from pool while holding vm_map_lock or we canBob Beck
deadlock ourselves - based on an infrequent hang caught by sthen, and diagnosed by kettenis and me. Fix after some iterations is to simply call uvm_map_allocate and allocate the map entry before grabbing the lock so we don't wait while holding the lock. ok miod@ kettenis@
2013-02-10remove some unneeded Xo/Xc.Jason McIntyre
2013-02-10Grammar nits.lum
2013-02-10do not mark up punctuation; ok gillesJason McIntyre
2013-02-10typo; fix from patrick keshishianJason McIntyre
2013-02-10When getting the next batch of envelope to schedule, use an array toEric Faurot
store envelope ids, rather than a dynamic list. ok gilles@
2013-02-10-h includes RFC 3164 style hostnames when forwarding;Markus Friedl
feedback and ok sthen@, mpf@
2013-02-09- Use a switch statement for setting the chipset flagsBrad Smith
- Add some macros for working with the various newer generations of chipsets - Make use of the 5717 macro in a few places - Add some bits for identifying and supporting some of the newer chipsets ok sthen@
2013-02-09As tedu@ pointed out a while ago, it makes little sense to discardKenneth R Westerback
an option list if it contains duplicate option names. Just ignore the duplicates.
2013-02-09Add CFI support for MIPS.Brad Smith
Backported from binutils 2.17. ok miod@
2013-02-09Ignore sysctl failure for CPU_LIDSUSPEND when errno is EOPNOTSUPP.Todd C. Miller
Just because CPU_LIDSUSPEND is defined in cpu.h does mean it is actually supported by the hardware. OK miod@ kettenis@
2013-02-09Remove no longer used struct emul extern declarations.Miod Vallat
2013-02-09Replace a bunch of if () else if () else if () else if () ... with thatMiod Vallat
modern brand new construct known as `switch'.
2013-02-09Add explicit __attribute__ ((__format__(__kprintf__)))) to the functions andMiod Vallat
function pointer arguments which are {used as,} wrappers around the kernel printf function. No functional change.
2013-02-09Grammar, typosMiod Vallat
2013-02-09Port attribute (__used__) from gcc 3+ to gcc 2.95.Miod Vallat
2013-02-09No longer #ifdef BUS_SPACE_MAP_PREFETCHABLE, as all <machine/bus.h> areMiod Vallat
expcted to provide it nowadays.
2013-02-09ater -> afterMiod Vallat
2013-02-09Blame the right function when panic'ing.Miod Vallat
2013-02-09Fix indent, add RCS IdMiod Vallat
2013-02-09Update minimal disk and memory sizes to match the bsd.rd requirementsMiod Vallat
(especially on vax, where bsd.rd really needs 16MB to install nowadays although the system can live in less). While there, fix a few typos.
2013-02-09Teach people they will need to upgrade their boot blocks, and how to do this,Miod Vallat
if they want to upgrade with bsd.rd, since older boot blocks can't boot ELF kernels.
2013-02-09Stop using the name `miniroot' when `bsd.rd' is implied. A few platformsMiod Vallat
have a real miniroot to be dd'ed to the disk, and that's fine; but when we are talking about booting bsd.rd (either from an existing setup, or the network, or the cd-rom images), then refer to it as `installation kernel'.
2013-02-09Update network boot configuration instructions to no longer refer toMiod Vallat
bootparams termcap-like two-letter fields in the configuration file.
2013-02-09No longer define EXEC_SCRIPT (probably coming from old PefoBSD). Also,Miod Vallat
DB_ELFSIZE ought to be defined in <machine/db_machdep.h>, not <machine/exec.h>
2013-02-09No longer define the a.out relocation format struct.Miod Vallat
2013-02-09Do not bother defining cpu_exec_aout_makecmds() on platforms where we no longerMiod Vallat
(or never did) support a.out binaries (i.e. where _KERN_DO_AOUT is not defined).
2013-02-09Programme the VT6105M, VT6105 and RhineII-2 to permit frames of up toStuart Henderson
1758 bytes (MTU 1740) and raise hardmtu to allow the user to set them. Tests by Mark Patruck, Michal Markowski, mikeb, beck, dtucker. ok mikeb@
2013-02-09Allow the user to configure an MTU of up to 1518, which does not requireStuart Henderson
any additional chip reprogramming, and is tested to work fine on DP83815. ok mikeb@
2013-02-09get the format of the various options in this file right and, alongJason McIntyre
the way, cut back on some of the crazy macros that were mostly around to appease groff; whilst there, fix the warnings reported by Jan Stary back in january; lots of help and ok krw
2013-02-09There is no /usr/libexec/uucp/uucico in base; uucico (8) is provided byAntoine Jacoutot
the net/uccp package and is installed under /usr/local/. Since we don't want a shell that default to /usr/local/..., use /sbin/nologin. The uucp package will automatically change to the correct shell on pkg_add / pkg_delete. idea from and ok miod@
2013-02-09syncMiod Vallat