summaryrefslogtreecommitdiff
path: root/share
AgeCommit message (Collapse)Author
2018-01-03Include https:// in links, so HTML output doesn't assume they're relative.Anthony J. Bentley
ok jmc@ schwarze@
2018-01-03fix SEE ALSO;Jason McIntyre
2018-01-02rkpcie(4)Mark Kettenis
2017-12-31sxitemp(4)Mark Kettenis
2017-12-30The `F' option no longer disables delayed freeing; from ksheOtto Moerbeek
Also, fix a verb-noun mixup; ok jmc@
2017-12-29VIA amd64 compatible CPUs support Enhanced SpeedStep, so reflect thatFrederic Cambus
in cpu.4. OK visa@, sthen@, jmc@
2017-12-28Delete information about bulk builds already found in bulk(8).cheloha
Direct the reader there instead. ok espie@
2017-12-24Add a PCI attachment driver for bwfm(4). It's not finished, but it'sPatrick Wildt
already past the point where development can occur out of the tree. With this I can successfully scan for access points and tell the chip to attach to an SSID. RX path should work as well, but since I forgot to bring the antenna with me to my parents, the reception is a bit horrible in the metal enclosure. There are a few reasons this driver is rather big. First we set up the ARM Cores, uploading the firmware and kicking it off. Then we need to read all needed information from the registers. Once that is done we have to set up countless buffers. There are 2 TX rings and 3 RX rings, plus N TX rings for the actual data that is yet to be implemented. Merry Christmas! ok kettenis@
2017-12-23Make it clear that MFS can be used for the noperm permission holding DESTDIR.Stuart Henderson
(If anyone needs a bit more handholding than is in release(8), the faq page https://www.openbsd.org/faq/faq5.html#Release has more information about setting this up). Much simplified from, but inspired by, various diffs from ians@. ok tb@ jmc@
2017-12-22Since export accepts several variables, put them on a single line; ok tb@anton
2017-12-18Sync cross references related to libutil; ok jmc@anton
2017-12-17dwxe(4)Mark Kettenis
2017-12-16tweak previous;Jason McIntyre
2017-12-16Update with changes from FreeBSD via NetBSD. From Sevan Janiyan.Todd C. Miller
2017-12-16acrtc(4), sxirsb(4)Mark Kettenis
2017-12-15typo; from alexander kuleshovJason McIntyre
2017-12-14let urtwn(4) find my TP-LINK TL-WN722N v2Sebastian Benoit
ok deraadt@ phessler@ kettenis@
2017-12-14zap trailing whitespace;Jason McIntyre
2017-12-14add code to provide simple wait condition handling.David Gwynne
this will be used to replace the bare sleep_state handling in a bunch of places, starting with the barriers.
2017-12-10add the zte mf831; from christoph r. murauerJason McIntyre
while here, a little less capitalisation
2017-12-05add missing blank before punctuation;Jason McIntyre
2017-12-05document PORTS_PRIVSEP now that it's nearing completionMarc Espie
2017-12-02post-patch -> pre-configureAntoine Jacoutot
2017-12-01remove deprectaed linkX notation;Jason McIntyre
from lucas gabriel vuotto
2017-11-30add bgw;Jason McIntyre
2017-11-30Add bgw(4) man page.Mark Kettenis
2017-11-30vn_open(9) does not pass the open(2) flags to VOP_CREATE(9) so we can'thelg
support FBT_CREATE. Fall back to FBT_MKNOD + FBT_OPEN so that a valid sequence of FUSE messages is sent to the file system when creating files. input from mpi@, otto@
2017-11-30use the same macro consistently for the various carp balancing modes;Jason McIntyre
2017-11-29missing Sx; ok jmc@anton
2017-11-28zap trailing whitespace, and zap some Tn while here;Jason McIntyre
2017-11-28Correct the description for VOP_RENAME to reflect that tvp is unlockedhelg
on exit. ok mpi@
2017-11-27Remove MALLOC_DEBUG left overs.Martin Pieuchot
From Klemens Nanni.
2017-11-24add timeout_barrier, which is like intr_barrier and taskq_barrier.David Gwynne
if you're trying to free something that a timeout is using, you have to wait for that timeout to finish running before doing the free. timeout_del can stop a timeout from running in the future, but it doesn't know if a timeout has finished being scheduled and is now running. previously you could know that timeouts are not running by simply masking softclock interrupts on the cpu running the kernel. however, code is now running outside the kernel lock, and timeouts can run in a thread instead of softclock. timeout_barrier solves the first problem by taking the kernel lock and then masking softclock interrupts. that is enough to ensure that any further timeout processing is waiting for those resources to run again. the second problem is solved by having timeout_barrier insert work into the thread. when that work runs, that means all previous work running in that thread has completed. fixes and ok visa@, who thinks this will be useful for his work too.
2017-11-23Add fibocom L831-EAU to umb manjob
Confirmed on Thinkpad X270
2017-11-23document minor changesMarc Espie
2017-11-21Delete mentions of the gettext module, which has been obsoleted and removed.Christian Weisgerber
2017-11-17add some missing markup; from artturi almJason McIntyre
2017-11-17Add the word "software" to our dictionary to help passing the testAlexander Bluhm
of Sub::Attribute Perl module. OK jmc@
2017-11-17add if_rxr_livelocked so rxr users can request backpressure themselves.David Gwynne
right now the rx ring moderation code makes a decision globally that a machine is livelocked, and uses that to apply backpressure on all the rx rings. we're moving toward having the network stack run on multiple cpus, and fed from multiple rx rings. if_rxr_livelocked lets a driver apply backpressure explicitely if something tells it that whatever is consuming previous packets cannot keep up. while here expose the current ring watermark with if_rxr_cwm. tweaks and ok visa@
2017-11-17the COMPILER transition mechanism is goneChristian Weisgerber
2017-11-16fix SEE ALSO;Jason McIntyre
2017-11-16Add PCI attachment for dwiic(4) needed by Intel 100 Series machinesJoshua Stein
ok kettenis
2017-11-16sync struct ifreq with if.h. ifr_vnetid is now a proper member ofTheo Buehler
struct ifreq and is no longer overloaded with ifr_metric. Moreover, ifr_index and ifr_llprio were missing and mandoc -Tlint complained about a "useless macro: Tn". ok jmc, benno, visa
2017-11-15wrap some long lines for function prototypes with .Fo, .Fa, and .Fc.David Gwynne
no functional change, ie, the output is the same
2017-11-14Set soname when building shared libraries.Mark Kettenis
ok guenther@
2017-11-13add taskq_barrierDavid Gwynne
taskq_barrier guarantees that any task that was running on the taskq has finished by the time taskq_barrier returns. it is similar to intr_barrier. this is needed for use in ifq_barrier as part of an upcoming change.
2017-11-13tweak previous;Jason McIntyre
2017-11-13add a generic packet rate matching filter. allows things likeHenning Brauer
pass in proto icmp max-pkt-rate 100/10 all packets matching the rule in the direction the state was created are taken into consideration (typically: requests, but not replies). Just like with the other max-*, the rule stops matching if the maximum is reached, so in typical scenarios the default block rule would kick in then. with input from Holger Mikolon ok mikeb
2017-11-10replace last instances of /dev/arandom with /dev/urandomChristian Weisgerber
2017-11-08/usr/share/compile -> relink; ok tbJason McIntyre