summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-07-23add a manpage for /etc/defaultdomainJared Yanovich
help and ok jmc, miod, millert, and others
2004-07-23Move luna88k and mvme88k vm_machdep to m88k-agnostic code area.Miod Vallat
2004-07-23Nuke getdevunit().Miod Vallat
2004-07-23tweaks for openssl spkac;Jason McIntyre
2004-07-23- make SYNOPSIS and usage() clear that -t precedes -T;Jason McIntyre
spotted by Tamas Tevesh, via dhartmei@; also, add -o to usage(), and note that /ruleset is now the correct syntax, not :ruleset; ok dhartmei@
2004-07-23Revamp the file interface to make life easierJean-Francois Brousseau
2004-07-23move example descriptions before the examples themselvesJared Yanovich
ok jmc
2004-07-22fast-scanner should now about dir/ too.Marc Espie
2004-07-22Add missing check for NULL in DIOCCHANGERULE. This prevents a crash inMathieu Sauve-Frankel
certain rare cases. ok mcbride@ dhartmei@
2004-07-22useMarc Espie
directory/ instead of @dir directory okay naddy@
2004-07-22typo;Jason McIntyre
2004-07-22Make the inline bzero() of the U area much more readable.Miod Vallat
As a bonus it generates smaller and faster code.
2004-07-22Grammar.Miod Vallat
2004-07-22Split and modify tests to prevent infinite loops on platforms with preciseMark Kettenis
floating-point exceptions like amd64. ok deraadt@, david@
2004-07-22Add vax libkvm kernel memory image debugging support.Mark Kettenis
ok miod@, wow deraadt@
2004-07-22Reset pcb_onfault to NULL before invoking uvm_fault().Miod Vallat
2004-07-22Remove redundant or useless section modifiers.Miod Vallat
2004-07-22Do not use db_printf() to trace data access exceptions.Miod Vallat
2004-07-22use full path to netgroup file in SYNOPSISJared Yanovich
mention /etc/netgroup in FILES ok jmc
2004-07-22Fix incorrect snprintf return value check noticed by Jarno Huuskonen.Todd C. Miller
Also make a utime() failure non-fatal since the important thing is the poke on the socket now.
2004-07-22Remove some register keywords to make this compile on amd64.Artur Grabowski
2004-07-22Change a printf+Debugger pair into a panic.Artur Grabowski
Debugger calls in the middle of the code are evil because they don't respect the ddb.panic sysctl and might leave critical machines hung instead of quickly rebooting them. requested by tedu@
2004-07-22SIMPLELOCK -> mutex for the lock around deadproc list.Artur Grabowski
Also move the whole deadproc infrastructure to kern_exit, it's only used there. miod@ ok
2004-07-22Spell reserved correctly; ok from copyright holders when in licence blocks.Miod Vallat
2004-07-22Fix a typo and get good results in the process, fixes PR 3830 and passesMiod Vallat
Perl's regression test; ok art@
2004-07-22Use mutex instead of SIMPLELOCK for locking the tlb shootdown queuesArtur Grabowski
and related structures. tedu@ ok
2004-07-22mutex instead of SIMPLELOCK for mp ddb.Artur Grabowski
"reads good" niklas@ "looks good" andreas@ "works" tedu@
2004-07-22fix cases when m_dup1() returned mbuf chain (instead of single mbuf).Jun-ichiro itojun Hagino
yamt@netbsd
2004-07-22Do not overallocate stack space, and keep the stack on a 16-byte boundary.Miod Vallat
2004-07-22remove p arg from fdplockTed Unangst
2004-07-22remove p arg from fdplockTed Unangst
2004-07-22remove an unused varDavid Gwynne
ok krw@
2004-07-22stage 1 of the infinite minibuffer work - add support for on the flyVincent Labrecque
buffer reallocation in veread(). This commit only changes the API. All the buffers have exactly the same bounds as before for now. tested by a couple of my very helpful testers!
2004-07-22Fix access to direct mapped memory through /dev/kmem.Artur Grabowski
2004-07-21remove hppa workarounds; from jkunz@ pr3861Michael Shalayeff
2004-07-21swapped byte swapping in raw vs non-raw funcs and missed swapping in rw8; ↵Michael Shalayeff
from jkunz@ pr3861
2004-07-21Fix conversion of interrupt frame to trap frame.Mark Kettenis
ok deraadt@, niklas@
2004-07-21kqueue support for NFS, adapted from netbsd.marius eriksen
ok art@ pedro@, "get it in" deraadt@
2004-07-21Use fseeko, not fseek when offset is an off_t; Fabio Olive LeiteTodd C. Miller
2004-07-21typo in comment; Fabio Olive LeiteTodd C. Miller
2004-07-21In pipe_read, when the pipelock fails (most likely because we catch aArtur Grabowski
signal), don't jump to unlocked_error: and do things that we don't need to do (including messing up the internal state of the pipe). Just return. ok niklas@ miod@
2004-07-21regenMichael Shalayeff
2004-07-21spacingTheo de Raadt
2004-07-21use cdce_ prefix on crc32 function and table name to avoid conflicts,Daniel Hartmeier
suggested by mickey
2004-07-21In builtin_saveregs(), try to save registers with double store instructions,Miod Vallat
knowing that the area we are using is correctly aligned. Produces smaller and faster code (about 0.8% time decrease in a complete build, which amounts to roughly 15 minutes).
2004-07-21use \- for number rangesJared Yanovich
document new timeslot command ok alex jmc
2004-07-21slight fixes:Jared Yanovich
- use .Va for rc.conf* variables - use .Ic for internal commands in configuration files - e.g. -> For example - other small mdoc fixes ok jmc
2004-07-21the argument to most "cd" shell built-ins is optional, soJared Yanovich
reflect it in SYNOPSIS ok jmc
2004-07-21I was wrong. The assymetry created by the proc argument to rw_enter_writeArtur Grabowski
is horrible and doesn't add anything. Remove it. XXX - the fdplock macro will need a separate cleanup. niklas@ markus@ ok
2004-07-21bz#902: cache remote port so we don't fatal() in auth_log when remoteDamien Miller
connection goes away quickly. from peak AT argo.troja.mff.cuni.cz; ok markus@