summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-04-14avoid hardcoded SOCK_xx; with itojun@; should allow ssh over SCTPMarkus Friedl
2003-04-14Unlink FIFO and pid files on clean shutdown. PR#3199Hakan Olsson
2003-04-14Remove dead attribute "rasterconsole".Miod Vallat
2003-04-14More snprintf styleHakan Olsson
2003-04-14permit -s0. from Maxim KonovalovJun-ichiro itojun Hagino
2003-04-14A "%d" is 12 chars, not 10. Use sizeof num instead of '10' inHakan Olsson
snprintf. From Theo.
2003-04-14add rtsp. ok deraadt@Jakob Schlyter
2003-04-14commented out section which points people to use libisodir.a forJason McIntyre
error reporting, since libisodir.a does not exist.
2003-04-14when libc/shlib_version says you need to crank this one too, DO NOT IGNORETheo de Raadt
THAT ADVICE -- IT IS THERE FOR A REASON
2003-04-14standalone/stand alone -> stand-alone;Jason McIntyre
from NetBSD (Igor Sobrado); httpd stuff passed to apache people; ok millert@
2003-04-14built in -> built-in;Jason McIntyre
from NetBSD (Igor Sobrado); smrsh(8) passed on to sendmail people; ok millert@
2003-04-14syncTheo de Raadt
2003-04-14There are two related changes.Artur Grabowski
The first one is an mquery(2) syscall. It's for asking the VM system about where to map things. It will be used by ld.so, read the man page for details. The second change is related and is a centralization of uvm_map hint that all callers of uvm_map calculated. This will allow us to adjust this hint on architectures that have segments for non-exec mappings. deraadt@ drahn@ ok.
2003-04-14strlcpy, pretty easyTheo de Raadt
2003-04-14remove old commentTheo de Raadt
2003-04-14spring cleaning; ok millertTheo de Raadt
2003-04-14obvious spring cleanupTheo de Raadt
2003-04-14strlcpy, obviousTheo de Raadt
2003-04-14More strlcpy/strlcat and use memmove for equivalent() so it is moreTodd C. Miller
readable. deraadt@ OK
2003-04-14strlcat, but i memset 0 before to be safeTheo de Raadt
2003-04-14string cleaning; my bugs found by millert and krwTheo de Raadt
2003-04-14room for NUL; tdevalTheo de Raadt
2003-04-14syncTheo de Raadt
2003-04-14fix time spec even better; emmf26@umr.eduTheo de Raadt
2003-04-13KNFHenning Brauer
2003-04-13more hfsc test; especially for the feedback testHenning Brauer
2003-04-13actually use an understandable descriptionHenning Brauer
2003-04-13test double upperlimit service curveHenning Brauer
2003-04-13prevent double service curve specificationHenning Brauer
2003-04-13test doubly linkshare specificationHenning Brauer
2003-04-13test service curvesHenning Brauer
2003-04-13add support for the HFSC linkshare, realtime, and upperlimit service curvesHenning Brauer
to be specified.
2003-04-13Mention PrestoserveMiod Vallat
2003-04-13concistency in the print-funtions, here: HFSC uppercurve and bracketsHenning Brauer
2003-04-13Document presto(4)Miod Vallat
2003-04-13RegenMiod Vallat
2003-04-13Add a simple driver for the SBus ``Prestoserve'' NVRAM cards.Miod Vallat
The Legato Prestoserve NFS accelerator used to be very popular, back when NFSv3 did not exist, and disks and network speeds were not as good as they are now... This driver does not attempt to play any game with filesystems, but will only provide access to the cards NVRAM, as a block device. If you have bright ideas on ``what to do with a few MB of battery-backed memory'', I am interested in realistic suggestions!
2003-04-13unbreak (missing })Daniel Hartmeier
2003-04-13remove debugg printf that had a bad format stringAnil Madhavapeddy
ok drahn@, miod@, tdeval@
2003-04-13obvious typo: "s%" -> "%s" in format stringAnil Madhavapeddy
2003-04-13use pa->ifbandwidth instead of rate as reference bandwidth for the root queueHenning Brauer
2003-04-13say bye bye to hfscflags_list and hfscflags_itemHenning Brauer
welcome hfscopts_list and hfscopts_item, returning a full struct node_hfsc_opt instead of just an int for the flags. needed because of all the opts hfsc knows
2003-04-13process HFSC options for the linkshare, realtime and upperlimit service curvesHenning Brauer
2003-04-13diff from nordin@ to prevent wraparound on long uptime machines.Ted Unangst
ok art@ deraadt@ miod@ tdeval@
2003-04-13break out bandwidth specification processing code to its own function, willHenning Brauer
be used in more places soonish
2003-04-13new struct node_hfsc_opts for, surprise, hfsc options. needed because theyHenning Brauer
contain bandwidth specifications and we need to carry the unprocessed bw specs around for quite some time until we can break them down to absolute values.
2003-04-13pass down the struct node_queue_opts from the altqif/queuespec yacc targetsHenning Brauer
to expand_altq/expand_queue -> eval_pfaltq/eval_pfqueue and further down to the new eval_queue_opts() instead of evaluating them directly in the yacc grammar. this will be needed to process the hfsc options which can contain relative bandwidth specifications, and we can't break them down to an absolute one earlier.
2003-04-13another bad bound; millert@ okAnil Madhavapeddy
2003-04-13move the structs node_queue_bw and node_queue_opt to pfctl_parser.h.Henning Brauer
let eval_pfqueue() and eval_pfaltq() take a pointer to a struct node_queue_bw instead of two distince bw_absolute and bw_percent parameters.
2003-04-13correct snprintf bound value, ok millert@, deraadt@Anil Madhavapeddy