summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-05-29Kill some #if define(__OtherBSD__). OK dlg@Claudio Jeker
2007-05-29remove compat netbsd stuffOtto Moerbeek
2007-05-29when purging relays, purge sessions as well.Pierre-Yves Ritschard
not needed for the initial purge since no sessions exist but will be necessary when reloading the relay process.
2007-05-29Instead of using hand-crafted redraws minimizing screen updates, use curses.Otto Moerbeek
Enables nice things like process highlighting without hurting the brain. ok deraadt@
2007-05-29gain us another 10+% of performance.Henning Brauer
boring details: long time ago (in r1.313) code was added to handle protocol checksums: > Check protocol (TCP/UDP/ICMP/ICMP6) checksums of all incoming packets, > and drop packets with invalid checksums. Without such a check, pf would > return RST/ICMP errors even for packets with invalid checksums, which > could be used to detect the presence of the firewall, reported by > "Ed White" in http://www.phrack.org/phrack/60/p60-0x0c.txt. that meant we did the checksumming for each and every packet traversing pf. now only do the checksumming right before we send an RST back, so in all other cases we save that work. ok bob theo
2007-05-29move the ssl cipher suite string to a (small) static charbuf,Pierre-Yves Ritschard
this will make it easier to send the struct over the socket.
2007-05-29these standalone commands are never used anymore; ok tomTheo de Raadt
2007-05-29update comment re nosuidcoredump sysctljoshua stein
ok tedu
2007-05-29delete some overly fascist rules.. prodded by tom/jmcTheo de Raadt
2007-05-29I've been running with an abort upon fatal loop, and I think I'veRay Lai
mostly gotten rid of them. It would be nice to know if there is a fatal loop instead of dying quietly, so call errx instead of exit(1). errx does not call fatal so it should be fine. OK niallo@
2007-05-29move struct relay to the runtime + config scheme.Pierre-Yves Ritschard
this time around, include hoststatectl changes too.
2007-05-29Since xrealloc dies on failure it is safe to directly assign to theRay Lai
original pointer. Theo agrees, and so does the rest of the tree (ssh, etc. all do this already). Saves a bunch of variables and assignments. OK niallo@
2007-05-29Add a name argument to the RWLOCK_INITIALIZER macro.Thordur I. Bjornsson
Pick reasonble names for the locks involved.. ok tedu@, art@
2007-05-29put commented out entry for kern.nosuidcoredump=2 in, yes theo & teduHenning Brauer
2007-05-29mention new option 2 for nosuidcoredumpTed Unangst
2007-05-29correct frame size limitation in BUGS section (7440 bytes, not 7.5K)Peter Valchev
ok jmc
2007-05-29put suid coredumps into /var/crash if kern.nosuidcoredump is set to 2.Ted Unangst
makes debugging easier, docs in a bit ok beck deraadt
2007-05-29remove support for many alternative kernel choices -- only try /bsd andTheo de Raadt
not the other stupid names. that feature was retarded. tested on a few architectures by a few people
2007-05-28Revert accidental commit of acpi enabling. don't do that yet.Bob Beck
2007-05-28bob missed a file, zap zapTed Unangst
2007-05-28syncTheo de Raadt
2007-05-28some remnants of the timestamping code i missedTed Unangst
2007-05-28zap kern.emul.netbsd=1; ok beckJason McIntyre
2007-05-28fix C++ style commentChris Kuethe
from brad, ok deraadt
2007-05-28on tsartup, along with saying which AS number we are building filters for,Henning Brauer
give the output dir
2007-05-28COMPAT_NETBSD is no more. ok jmc@Bob Beck
2007-05-28Maintaining a broken compatibility layer for a broken OS is not a productiveBob Beck
activity for anyone. Bye bye COMPAT_NETBSD. ok tedu@, deraadt@, and many others in the hackathon room.
2007-05-28typo slipped in, unbreak.Pierre-Yves Ritschard
2007-05-28Some spacing syncs with diff(1).Ray Lai
2007-05-28Gently nudge up the interrupt coalescing timeout to 128 microseconds. ThisChris Kuethe
gives the firmware time to do its job. Makes my fxps go from 12000int/sec while moving 100Mbps to 3000int/sec ok beck claudio
2007-05-28syncTodd T. Fries
2007-05-28syncTodd T. Fries
2007-05-28remove wt tape drives. prodded by krw@Todd T. Fries
2007-05-28syncTodd T. Fries
2007-05-28Delete wt code files. The end of wt(4).Kenneth R Westerback
2007-05-28bio for all archs, ok krw@ kettenis@ sounds good marco@ go for it deraadt@Todd T. Fries
2007-05-28Delete wt(4) man page.Kenneth R Westerback
2007-05-28pool_setipl() on the bufpool, to make sure thatThordur I. Bjornsson
every get/put is at IPL_BIO. ok pedro@
2007-05-28avoid bypassing sys/queue.h in many places in the kernel.Pierre-Yves Ritschard
many assumptions were made about the way the various list types are implemented. lots of suggestions and help from otto and miod. ok otto@
2007-05-28create and populate a section on hardware monitoring sensorsConstantine A. Murenin
2007-05-28"in formation" -> "information"Ray Lai
OK niallo@
2007-05-28another small step towards hoststated reloading.Pierre-Yves Ritschard
allow purging of parts of the hoststated environment structure. start using this function now to only keep vital information in hoststated children processes. ok reyk@
2007-05-28Line up comments with the rest of the file, like in diff(1).Ray Lai
2007-05-28the device fd is global. no need to pass it between functions.Michael Coulter
2007-05-28Make disk assembly smarter and add two qualifiers to it:Marco Peereboom
1) noautoassemble; when set the softraid volume will not be assembled during autoconf. 2) force; when set it will overwrite metadata on disk While writing this I ran into 3 bugs that were fixed along the way 1) bcopy in sr_read_meta was copying data to the wrong pointer 2) in sr_read_meta the wrong metadata was coppied into the chunk 3) sr_free_discipline was freing a pointer that wasn't malloc'd ok dlg
2007-05-28zap annoying __KERNEL_RCSID().Thordur I. Bjornsson
ok krw@
2007-05-28syncTheo de Raadt
2007-05-28create and populate a section on hardware monitoring sensorsConstantine A. Murenin
2007-05-28lockmgr -> rwlock for the nfs_hashlock.Thordur I. Bjornsson
ok tedu@
2007-05-28de-inline vref();Thordur I. Bjornsson
ok pedro@