summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-01-19Improve some comments and wrap a long line.Joel Sing
2014-01-19Only schedule the read workunit if there are actually I/O ccbs enqueuedJoel Sing
on it. ok krw@
2014-01-19Factor out and improve the block regeneration code.Joel Sing
ok krw@
2014-01-19Cast the sizeof to socklen_t so it'll work even if the supplied len isDarren Tucker
negative. Suggested by and ok djm, ok deraadt.
2014-01-19RTF_MPATH is a flag userland needs to be able to pass in since it is usedClaudio Jeker
to set multipath routes. So since more then 2 month multipath was broken.
2014-01-19Usually, you don't want macros in the .Nd line, so remove instances of .TnIngo Schwarze
marking up words that are not trademarks (ASCII, I/O, NFS, TCP, TELNET). While here, remove .Tn markup from the same words in the body of these pages, too.
2014-01-19syncTheo de Raadt
2014-01-19Better interrupt handler return values. 1 if the chip said it wanted anJonathan Matthew
interrupt, 0 if it didn't. "makes sense" dlg@
2014-01-19Only i386 needs mquery; delete the static inlines from amd64 and hppaPhilip Guenther
2014-01-19Forget to remove the prototype for set_lids() after removing the definitionPhilip Guenther
2014-01-19Nuke unused functions putLong(), putUShort(), putShort().Kenneth R Westerback
2014-01-19msleep.9 is relevant to my interests.David Gwynne
ok guenther@
2014-01-19More cleanup in radix.c. Kill the rt_mkfreelist and replace it with aClaudio Jeker
radix_mask pool. With input and OK mikeb@ and henning@
2014-01-19Extend the initial pf ruleset to explicitly allow dhcp / bootp and dhcpv6.Claudio Jeker
Our dhclient only uses the bpf tap for broadcast packets (which bypass pf) but lease renewals will use a regular socket and are blocked without this change. Rules are written so that accidential forwarding of packets is not possible. Diff from brad@, OK henning@, benno@, mikeb@
2014-01-19update extra output, error messages are more specific nowMarc Espie
2014-01-19A SYNOPSIS should not attempt to provide examples, so trim it;Ingo Schwarze
a better example already exists in the EXAMPLES section. The DESCRIPTION should not provide examples either, in particular not bad ones, so move that to CAVEATS. Also fix various markup. OK jmc.
2014-01-19introduce fine grained locking around the lists of packet handlersDavid Gwynne
myx maintains. this moves it away from relying on splnet to protect them.
2014-01-19Fix macro usage: ifconfig is .Nm, not .Cm.Ingo Schwarze
2014-01-19Redo the parsing of numbers to improve the error messages andKenneth R Westerback
make the code more readable. And prepare for some new things that will need to be parsed. ok dlg@
2014-01-19Obvious typo in macro, .Fn fb_queue, not .Fa.Ingo Schwarze
2014-01-19Fix obvious typo in macro, bus_space_map() is .Fn, not .Fa.Ingo Schwarze
Found with mandocdb(8).
2014-01-19Fix obvious macro typo, arc4random() is .Fn, not .Pa.Ingo Schwarze
Found with mandocdb(8).
2014-01-19Introduce qla(4), a new driver for Qlogic fibre channel HBAs (only ISP23xxJonathan Matthew
so far). Works reasonably well now, so it's going in the tree so others can try it out. with some help and fixes from dlg@, general encouragement from basically everyone
2014-01-19no need for LDSTATIC, it comes from ../Makefile.incTheo de Raadt
2014-01-19enter installbootTheo de Raadt
2014-01-19Punctuation after macro arguments needs to be in a separate argument.Ingo Schwarze
Found while testing mandocdb(8).
2014-01-19Count the number of media words required only once. If the media wordsTheo de Raadt
change during M_WAITOK (note: no driver does this at the moment), then be careful to not copyout a truncated media word list, but return E2BIG. ok mikeb guenther kettenis
2014-01-19Report the number of dropped ICMP error because the rate limit got exceeded.Claudio Jeker
OK benno@ deraadt@
2014-01-19Start counting droped icmp errors because the rate limit is exceeded.Claudio Jeker
OK benno@ deraadt@
2014-01-19fix inverted meaning of 'no' and 'yes' for CanonicalizeFallbackLocalDamien Miller
2014-01-19Rename parse_hardware_param() to parse_ethernet() to reflect whatKenneth R Westerback
it actually does.
2014-01-19Cast socklen_t when comparing to size_t and use socklen_t to iterate overDarren Tucker
the ip options, both to prevent signed/unsigned comparison warnings. Patch from vinschen at redhat via portable openssh, begrudging ok deraadt.
2014-01-19Fix minor ident issue. OK benno@, pelikan@Claudio Jeker
2014-01-19Tweak comment re root prefixes.Joel Sing
2014-01-19Use the new installboot when building amd64 media.Joel Sing
2014-01-19Switch amd64 installs/upgrades to the new installboot.Joel Sing
2014-01-19Add usr/sbin/installboot to amd64 instbin.Joel Sing
2014-01-19Start to reduce the madness in radix.c. This only used by the kernelClaudio Jeker
since ages so remove the bits used for userland compiles. OK mikeb@
2014-01-19Adjust lexchar position by ugflag once only.Kenneth R Westerback
2014-01-19hwflags is never used, so clean it upDavid Gwynne
2014-01-19Do not prefix user specified stages with the root filesystem mount point.Joel Sing
2014-01-19When copying files do it in 512 byte blocks so that we're less likely toJoel Sing
hit file system allocation issues on install media. Requested by deraadt@
2014-01-19replace bcmp with memcmpDavid Gwynne
2014-01-19bcopy to memcpyDavid Gwynne
2014-01-19Remove max_datalen. It is only used once an can be replaced easily withClaudio Jeker
MHLEN - max_hdr in that place. OK mikeb@
2014-01-19Add makefile for distrib/special/installboot.Joel Sing
2014-01-19replace bzero with memset.David Gwynne
2014-01-19Rework installboot and use a single directory with a single makefile. TheJoel Sing
directory per machine model is arguably cleaner, however it does not play well with distrib/special and instbin. Discussed with deraadt@
2014-01-19all 64bit archs myx runs on support bus_space 8 things because of work iDavid Gwynne
did at n2k13.
2014-01-19Get rid of the local keys table, use the new mansearch_const.c.Ingo Schwarze
No functional change.