summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-05-29carp_ioctl() happens after ifioctl(); check flags correctly so thatRyan Thomas McBride
'ifconfig carp0 down' and 'ifconfig carp0 up' work as expected.
2004-05-29syncTheo de Raadt
2004-05-29usb2 & usb3 more needed on modern machinesTheo de Raadt
2004-05-28Modify adb packet handling so that the completion routine can reentrantlyDale Rahn
process the queue. fix from netbsd, pointed out on ppc@ several times. Doesn't appear to affect my machines, but helps others.
2004-05-28Clean up sense error logic and printing a bit, partly inspired byKenneth R Westerback
NetBSD. Try to limit special handling of sense errors in sd and st to a minimum. ok marco@
2004-05-28Add MDROOTFSOPT handling code to allow non-default newfs options toKenneth R Westerback
be specified for root filesystems. Add MDROOTFSOPT value for luna88k so installed system can boot. Tested by Kenji Ayoma. ok miod@.
2004-05-28cvs really sucks.Brad Smith
2004-05-28bye bye old package tools.Brad Smith
ok deraadt@
2004-05-28Reflect new reality by adding:Marco Peereboom
* Adaptec 1210SA, 2410SA, 2610SA, 2810SA, 21610SA * Dell CERC-SATA, PERC 320/DC
2004-05-28detect absence of PF_KEY interface and/or the TCP_MD5SIG setsockoptsHenning Brauer
at runtime and disable said subsystems if so. helps the guys porting bgpd to $otherBSD, and is actually the right thing to do. claudio ok
2004-05-28regenTed Unangst
2004-05-28ACCOUNTING is optional. found by mpech. ok deraadtTed Unangst
2004-05-28don't want SO_REUSEPORT...Henning Brauer
2004-05-28Clean up subsysid lookups + print subsysid string during boot.Marco Peereboom
Add: * Adaptec 1210SA, 2410SA, 2610SA, 2810SA, 21610SA * Dell CERC-SATA, PERC 320/DC
2004-05-28Regen.Marco Peereboom
2004-05-28Remove DELL CERC-SATA since it is a subsysid. ok deraadt@, nate@Marco Peereboom
2004-05-28fix for: !(flags && FORCECLOSE)Mike Pechkin
hackers@ ok
2004-05-28In the Final function, move the context zeroing into the digest != NULLTodd C. Miller
scope so that passing a NULL digest is equivalent to the Pad function (like it used to be). Fixes skey w/ sha1 as noticed by David Krause.
2004-05-28bpf device cloning.Alexander Yurchenko
Now to have more bpf devices just add device nodes in /dev, no need to recompile kernel anymore. Code from form@pdp-11.org.ru, some help from markus@. ok markus@ canacar@ deraadt@
2004-05-28knf; otto okTheo de Raadt
2004-05-28put ahd in these two config files (disabled for now, though, because itTheo de Raadt
is not yet reliable)
2004-05-28Make lf_advlock glue work for AFS so flock/fcntl lock requests will workBob Beck
on the local machine (like NFS). This does not yet implement whole file AFS locking (arla doesn't do that yet). ok tedu@ art@
2004-05-27oopsTheo de Raadt
2004-05-27remove tedu crudTheo de Raadt
2004-05-27No need to mention kernel configuration for ipsec, it's enabled by default.Hans-Joerg Hoexer
ok niklas@ ho@ markus@ jmc@
2004-05-27for openbsd-*-hppa* force libtool to pass all dep-libs through for -lgcc ↵Michael Shalayeff
used for shlib linking; espie@ ok
2004-05-27fake plabel32 relocs for dyn.init/fini instead of an evil md macro hookMichael Shalayeff
2004-05-27miod says ACCOUNTING needs a man page diffTed Unangst
2004-05-27hppa pmap needs to use old pool allocator for now.Ted Unangst
i know the fix, but it's not here yet. ok mickey
2004-05-27syncTed Unangst
2004-05-27make acct(2) optional with ACCOUNTINGTed Unangst
ok art@ deraadt@
2004-05-27accept login names over 8 chars; miod okTheo de Raadt
2004-05-27plug memleak in error pathHenning Brauer
From: Andrey Matveev <andrushock@korovino.net>
2004-05-27kill whitespace;Jason McIntyre
2004-05-27some updates for openssl smime;Jason McIntyre
2004-05-27shutdown accounting before shutting down vfs. should prevent some panics.Ted Unangst
ok david@ millert@ (iirc)
2004-05-27apm restores perflevel after resume; some cpus are forgetful.Ted Unangst
update cpu even with 100 -> 100 setperf changes, in case saved value has gotten out of sync. from grange@ ok deraadt@ grange@
2004-05-27the tcp header might be in a different mbuf after pulldown();Markus Friedl
fixes tcp corruption on rl(4); ok itojun, cedric
2004-05-27Rule parser improvements: line numbers, no nl at eof, handling of linesOtto Moerbeek
with too many tokens. Based on diff from Jared Yanovich. ok tdeval@ deraadt@
2004-05-27change uvm_km_getpage to take waitok argument and sleep if appropriate.Ted Unangst
change both the nointr and default pool allocators to using uvm_km_getpage. change pools to default to a maxpages value of 8, so they hoard less memory. change mbuf pools to use default pool allocator. pools are now more efficient, use less of kmem_map, and a bit faster. tested mcbride, deraadt, pedro, drahn, miod to work everywhere
2004-05-27while polling, ack & ignore interrupts. this will have to do untilTheo de Raadt
someone writes a better diff. from peter
2004-05-27Kill dead code after fatal(); ok djm@Darren Tucker
2004-05-26typosPedro Martelletto
2004-05-26missing freeaddrinfo; Andrey MatveevMarkus Friedl
2004-05-26use sa_family not inp; netbsd merge error; ok dhartmeiMarkus Friedl
2004-05-26add Sitecom usb-serial (CN104)Markus Friedl
2004-05-26add Sitecom usb-serial (CN104)Markus Friedl
2004-05-26syncMarkus Friedl
2004-05-26sitecom serial adapterMarkus Friedl
2004-05-26do not leak fd on error path.Hans-Joerg Hoexer
ok ho@