summaryrefslogtreecommitdiff
path: root/sys/conf
AgeCommit message (Collapse)Author
2004-04-25radix tree with multipath support. from kame. deraadt okJun-ichiro itojun Hagino
user visible changes: - you can add multiple routes with same key (route add A B then route add A C) - you have to specify gateway address if there are multiple entries on the table (route delete A B, instead of route delete A) kernel change: - radix_node_head has an extra entry - rnh_deladdr takes extra argument TODO: - actually take advantage of multipath (rtalloc -> rtalloc_mpath)
2004-04-10Make it more obvious that you don't have to modify the counts on clonableRyan Thomas McBride
devices anymore. ok deraadt@ henning@ krw@ millert@
2004-04-05make it easier to tag releases/current/betaTheo de Raadt
2004-04-05we are at 3.5-current nowTheo de Raadt
2004-03-12Oops, declare oosiop.Miod Vallat
2004-03-10skip uvm_loan until later (kernel shrink); idea from markusTheo de Raadt
2004-03-09scratch the -beta partTheo de Raadt
2004-03-06Add last 'files' bit to allow mpt driver to be compiled.Kenneth R Westerback
2004-03-02disable COMPAT_25; ok miod millertTheo de Raadt
2004-02-27move to 3.5-betaTheo de Raadt
2004-02-13support secondary com@dino from todd@Michael Shalayeff
2004-02-10Decrease the initial number of ptys from 64 to 16. If the systemsTodd C. Miller
needs more it will allocate them on demand. OK deraadt@ beck@
2004-02-10Adjust comment now that number of ptys is dynamic.Todd C. Miller
2004-01-26TCP_SIGNATURE enabled by defaultTheo de Raadt
2004-01-18clean out #ifdef horror show in xfs_dev-bsd.c and enable XFS in GENERIC.Bob Beck
ok deraadt@, todd@
2004-01-07no kern_watchdog for SMALL_KERNEL; ok deraadt@Markus Friedl
2004-01-07dirhash is good to go. ok deraadt@Ted Unangst
2004-01-07ieee80211 framework from NetBSD; ok'd by several people some time ago.Federico G. Schwindt
more fixes comming.
2004-01-01Crank SHMMNI from 32 -> 128 and SHMSEG from 8 -> 128. OK deraadt@Todd C. Miller
2004-01-01document how to do -beta and -current taggingTheo de Raadt
2003-12-28add dirhash, and wire in rwlocks used by dirhashTed Unangst
2003-12-24Sync ahc with NetBSD, which was in turn updated from FreeBSD by PascalKenneth R Westerback
Renauld of Network Storage Solutions, Inc. Many fixes, wider device support. In particular, the notorious 'Target 0' problem seems to be fixed. Does *not* include any updates to isa or eisa code beyond what was necessary to compile. Known issues: 1) Tagged Queuing is probably not optimal. 2) PPR negotiation may not be fully functional. 3) No support yet for freezing devices or channels. 4) The mechanism for preventing 'A' and 'B' channel confusion during probe can fail if scsibus > 254 found. 5) Requeuing I/O's not working. A workaround will be committed almost immediately. At the moment timeouts, SCSI message rejects, aborting SCB's and trying to freeze a device may cause incomplete i/o's to be reported as complete. 6) Verbosity and probe messages need work. 7) Last disk on bus seems to go through an extra re-negotiation. 8) >16 devices on an adapter will trigger the usual problems of total openings exceeding available SCB's under heavy load. Tested by deraadt@, beck@, miod@, naddy@, drahn@, marc@ amoung others. ok deraadt@.
2003-12-12Move PF interface code to new net/pf_if.cCedric Berger
Expect improvements in this area soon. ok dhartmei@ mcbride@
2003-10-212 carp not 4Theo de Raadt
2003-10-17Common Address Redundancy ProtocolRyan Thomas McBride
Allows multiple hosts to share an IP address, providing high availability and load balancing. Based on code by mickey@, with additional help from markus@ and Marco_Pfatschbacher@genua.de ok deraadt@
2003-10-07use crypto/arc4; test, debug, ok millert@; ok fgsch@Markus Friedl
2003-10-01use random number generator to generate IPv6 fragment ID/flowlabel.Jun-ichiro itojun Hagino
cleanup IPv6 flowlabel handling. deraadt ok
2003-09-26missed a fileMichael Shalayeff
2003-09-15tree unlock, as we move to 3.4-currentTheo de Raadt
PLEASE NOTE: the tree is unlocking early for developers who were involved in the release process. for other developers the tree is NOT UNLOCKED YET. the following people are unlocked: beck, tdeval, nick, krw, pb, fries, matthieu, marcm, cedric, mdw, drahn, sturm, millert, andreas, markus, jason, avsm, wim, frantzen, fgs, henning, mcbride, hugh, tedu, nate, weingart, canacar, nordin, miod, danh, wilfried, deraadt, itojun, mickey, miod, deraadt Other developers are not unlocked. If I missed anyone, talk to me. Sorry, but our development process is oriented around "hack for 5 months, then do 1 month of release engineering. If a developer hacks for 5 months and then does not show up to help with release engineering, then we take that to mean they are less serious, and can give a bit of pause to the serious developers who now want to get things into the tree post-unlock.
2003-09-02oops forgot other -betaTheo de Raadt
2003-09-02start exiting -betaTheo de Raadt
2003-08-21Add Michal Zalewski's p0f v2 style passive OS fingerprinting to PF.Mike Frantzen
Exposes the source IP's operating system to the filter language. Interesting policy decisions are now enforceable: . block proto tcp from any os SCO . block proto tcp from any os Windows to any port smtp . rdr ... from any os "Windows 98" to port WWW -> 127.0.0.1 port 8001
2003-08-19myson mtd803 ether and enable mtdphy no; form netbsd via form@Michael Shalayeff
2003-08-15- remove ahc dependency, convert smc93cx6 into an attribute.Federico G. Schwindt
- support for 8 and 32 bit registers. from NetBSD. deraadt@ and krw@ testing and ok.
2003-08-12Build xfs/xfs_node.cHans Insulander
2003-08-11move to 3.4-betaTheo de Raadt
2003-07-24hmac-sha2-{256,384,512} support in AH/ESP auth. markus okJun-ichiro itojun Hagino
2003-07-24knfTheo de Raadt
2003-07-24ether | inet stuff; pr 3356; from dTheo de Raadt
2003-06-02Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
rescinded 22 July 1999. Proofed by myself and Theo.
2003-05-23move swapgeneric to truly generic code. tested on many archs by miod and ↵Ted Unangst
mickey.
2003-05-20support for NTFS. from NetBSD via Julien BordetTed Unangst
2003-05-14make PULLDOWN_TEST codepath the default (has been default for a long time).Jun-ichiro itojun Hagino
markus ok
2003-05-13turn layer fs back on. nullfs at least is very solid, and union isn't tooTed Unangst
bad. suggested by deraadt and naddy
2003-05-12new files for layer fs if nullfs | umapfsTed Unangst
2003-04-25lm(4) driver from NetBSD adapted for sysctl interface.Alexander Yurchenko
The lm driver provides support for the National Semiconductor LM series hardware monitors and register compatible chips. It supports LM78, LM78-J, LM79, Winbond W83697HF, W83627HF, W83781D and W83782D chips. Tested and ok'ed by millert@ and henning@.
2003-03-29some mount stinger onto phantomas and there is not need to flag stingers tooMichael Shalayeff
2003-03-273.3-currentMiod Vallat
2003-03-04remove -beta markerTheo de Raadt
2003-02-28do not entice people into playing with broken fsTed Unangst
ok deraadt@