summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-08-05syncTheo de Raadt
2004-08-05Unbreak luna88k; spotted by aoyama@Miod Vallat
2004-08-05comapring -> comparing noticed by brad@.Claudio Jeker
2004-08-05remove some separate per driver constants and useBrad Smith
ETHER_MAX_LEN_JUMBO/ETHERMTU_JUMBO where appropriate.
2004-08-05The peer_l is not needed in the rde but still allocated, free them andClaudio Jeker
save 1k per peer. OK henning@
2004-08-05When probing using badaddr make sure the probe load instructionPer Fogelstrom
is retired before turning off trap handling. Otherwise a panic trap may be taken. OK drahn@
2004-08-05As usual cleanup on exit. OK henning@Claudio Jeker
2004-08-05compile before you commit damnitTheo de Raadt
2004-08-05use ETHER_MAX_LEN.Brad Smith
ok mickey@
2004-08-05remove some separate per driver constants and useBrad Smith
ETHER_MAX_LEN_JUMBO/ETHERMTU_JUMBO where appropriate. ok mcbride@ henning@ mickey@
2004-08-05Get rid of some statistics stuff that is no longer needed but helped in theClaudio Jeker
beginning. OK henning@
2004-08-05Watch your step and do not access memory below what you've just allocated;Miod Vallat
fixes SIGV on m68k. ok tdeval@ millert@
2004-08-05Cleanup aspath specific functions and api. Mainly switch to a refcnt basedClaudio Jeker
allocation. This helps to save a bit of RAM. looks good henning@
2004-08-05tab at EOLClaudio Jeker
2004-08-05Cleanup attachs for com and lpt for mips.Per Fogelstrom
ok, miod, todd
2004-08-05struct prefix has a pointer to the peer so use it everywhere directly insteadClaudio Jeker
of the detour via aspath.
2004-08-05rename and move prefix_equal() to prefix_compare() which returns -1, 0, 1Claudio Jeker
similar to memcmp() and all other compare functions in bgpd. OK henning@
2004-08-05we wanna ignore SIGPIPE here just like in the session engine, claudio okHenning Brauer
2004-08-05Be nice to poor people with small machines and low limits.Artur Grabowski
2004-08-05When splitting a path, strip the trailing slashes before splitting it,Jean-Francois Brousseau
otherwise a path with a trailing slash would give an empty file name and the original path as the base part
2004-08-05Fix typos. Found by Dries SchellekensArtur Grabowski
2004-08-05Add a new log level LP_ABORT, which modifies the behaviour of prefixJean-Francois Brousseau
generation by outputting something similar to GNU CVS: cvs [<command> aborted]: message
2004-08-05Add support for passing an fd to the user's S/Key record back andTodd C. Miller
forth between login_skey and the invoking process. This allows us to keep the record locked between an invocation of login_skey that receives the challenge and another that verifies the response, preventing an interloper from sniffing the challenge and beating the legitimate user to the response.
2004-08-05Adapt the logging so any messages generated by the server will beJean-Francois Brousseau
prepended with a 'M' or 'E' command, depending on the log level, and follow the GNU behaviour of printing the command name after the program name in messages
2004-08-05Add skeychallenge2() which is like skeychallenge() but takes anTodd C. Miller
already open fd. Will be used to make separate challenge/response invocations of login_skey keep the record locked. Also properly escape minus signs in man page. OK henning@ jmc@
2004-08-05When spawning the subprocess for the connection, attach a pipe to itsJean-Francois Brousseau
standard error as well
2004-08-05Remove forgotten debug code which does not compile on alpha.Miod Vallat
2004-08-05fix the perl to generate proper \n in the output.Artur Grabowski
2004-08-05simpler copyright, adjust date.Marc Espie
2004-08-05keep at least a page in pv_entries pool and uppen the high markMichael Shalayeff
2004-08-05allocate a cluster on rx after all possible failures had been checked for; ↵Michael Shalayeff
repair sigcache misalignment
2004-08-05better signal cache printfMichael Shalayeff
2004-08-05again, sync usb device support accross archs by adding cdceDavid Gwynne
ok deraadt@
2004-08-05sync usb devs to other archs by adding cdceDavid Gwynne
ok deraadt@
2004-08-05attach the compaq w100 and w200. the w100 should work with a bit of work. itDavid Gwynne
is yet to be determined if the w200 has hope or not though from what i've read it should be possible. ok deraadt@
2004-08-05unmap bios when done. from form@pdp-11.org.ru via grangeTed Unangst
2004-08-05don't attempt to put processes back in a directory after unmount.Ted Unangst
it could never always work, and worse, may cause other bugs/crashes.
2004-08-05- fix includes needed to compileJared Yanovich
- mdoc and macro fixes - sync to reality - mention where the kinfo_proc type definition can be found ok millert jmc
2004-08-05spelling nit from Chris PascoeDavid Gwynne
ok deraadt@
2004-08-05Add signal-stress. Good luck.Artur Grabowski
2004-08-05A test that tests sends such a huge amount of signals that somethingArtur Grabowski
should happen if signal delivery is not robust.
2004-08-04tholo forgot to update KERN_MAXID; j@pureftpd.orgTheo de Raadt
2004-08-04.Xr talkd 8; from Scott Francis (PR #3884);Jason McIntyre
kill a .Pp/-compact combination in a display whilst here;
2004-08-04Use the ad hoc register define to access the Pbus fault status register,Miod Vallat
rather than an ugly 0x108.
2004-08-04hardclock detects if ITIMER_VIRTUAL and ITIMER_PROF have expired andArtur Grabowski
sends SIGVTALRM and SIGPROF to the process if they had. There is a big problem with calling psignal from hardclock on MULTIPROCESSOR machines though. It means we need to protect all signal state in the process with a lock because hardclock doesn't obtain KERNEL_LOCK. Trying to track down all the tentacles of this quickly becomes very messy. What saves us at the moment is that SCHED_LOCK (which is used to protect parts of the signal state, but not all) happens to be recursive and forgives small and big errors. That's about to change. So instead of trying to hunt down all the locking problems here, just make hardclock not send signals. Instead hardclock schedules a timeout that will send the signal later. There are many reasons why this works just as good as the previous code, all explained in a comment written in big, friendly letters in kern_clock. miod@ ok noone else dared to ok this, but noone screamed in agony either.
2004-08-04use CIRCLEQ_XXX; ok mcbride, miodMarkus Friedl
2004-08-04Uninline vputonfreelist.Artur Grabowski
2004-08-04Remove the old fetch(9)/store(9) functions, since they are not used inMiod Vallat
OpenBSD. This gives us a simpler and faster cpu_switch() as a bonus. ok drahn@
2004-08-04Crank maxusers to 32 on m68k GENERIC kernels, and to 16 on m68k installationMiod Vallat
media. The latter is to work around a pmap issue on 680[46]0, for which either a kluge or a real fix look very ugly.
2004-08-04- mdoc and macro fixes and simplificationJared Yanovich
- punctuation and grammar fixes - show prompts for example shell commands help and ok jmc