Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-12-17 | dwxe(4) | Mark Kettenis | |
2017-12-16 | tweak previous; | Jason McIntyre | |
2017-12-16 | Update with changes from FreeBSD via NetBSD. From Sevan Janiyan. | Todd C. Miller | |
2017-12-16 | acrtc(4), sxirsb(4) | Mark Kettenis | |
2017-12-15 | typo; from alexander kuleshov | Jason McIntyre | |
2017-12-14 | let urtwn(4) find my TP-LINK TL-WN722N v2 | Sebastian Benoit | |
ok deraadt@ phessler@ kettenis@ | |||
2017-12-14 | zap trailing whitespace; | Jason McIntyre | |
2017-12-14 | add 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-10 | add the zte mf831; from christoph r. murauer | Jason McIntyre | |
while here, a little less capitalisation | |||
2017-12-05 | add missing blank before punctuation; | Jason McIntyre | |
2017-12-05 | document PORTS_PRIVSEP now that it's nearing completion | Marc Espie | |
2017-12-02 | post-patch -> pre-configure | Antoine Jacoutot | |
2017-12-01 | remove deprectaed linkX notation; | Jason McIntyre | |
from lucas gabriel vuotto | |||
2017-11-30 | add bgw; | Jason McIntyre | |
2017-11-30 | Add bgw(4) man page. | Mark Kettenis | |
2017-11-30 | vn_open(9) does not pass the open(2) flags to VOP_CREATE(9) so we can't | helg | |
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-30 | use the same macro consistently for the various carp balancing modes; | Jason McIntyre | |
2017-11-29 | missing Sx; ok jmc@ | anton | |
2017-11-28 | zap trailing whitespace, and zap some Tn while here; | Jason McIntyre | |
2017-11-28 | Correct the description for VOP_RENAME to reflect that tvp is unlocked | helg | |
on exit. ok mpi@ | |||
2017-11-27 | Remove MALLOC_DEBUG left overs. | Martin Pieuchot | |
From Klemens Nanni. | |||
2017-11-24 | add 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-23 | Add fibocom L831-EAU to umb man | job | |
Confirmed on Thinkpad X270 | |||
2017-11-23 | document minor changes | Marc Espie | |
2017-11-21 | Delete mentions of the gettext module, which has been obsoleted and removed. | Christian Weisgerber | |
2017-11-17 | add some missing markup; from artturi alm | Jason McIntyre | |
2017-11-17 | Add the word "software" to our dictionary to help passing the test | Alexander Bluhm | |
of Sub::Attribute Perl module. OK jmc@ | |||
2017-11-17 | add 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-17 | the COMPILER transition mechanism is gone | Christian Weisgerber | |
2017-11-16 | fix SEE ALSO; | Jason McIntyre | |
2017-11-16 | Add PCI attachment for dwiic(4) needed by Intel 100 Series machines | Joshua Stein | |
ok kettenis | |||
2017-11-16 | sync struct ifreq with if.h. ifr_vnetid is now a proper member of | Theo 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-15 | wrap some long lines for function prototypes with .Fo, .Fa, and .Fc. | David Gwynne | |
no functional change, ie, the output is the same | |||
2017-11-14 | Set soname when building shared libraries. | Mark Kettenis | |
ok guenther@ | |||
2017-11-13 | add taskq_barrier | David 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-13 | tweak previous; | Jason McIntyre | |
2017-11-13 | add a generic packet rate matching filter. allows things like | Henning 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-10 | replace last instances of /dev/arandom with /dev/urandom | Christian Weisgerber | |
2017-11-08 | /usr/share/compile -> relink; ok tb | Jason McIntyre | |
2017-11-05 | Consolidate lib.so.*.a, ld.so.a and the kernel relink kit into | Robert Peichaer | |
one location under /usr/share/relink. Be more specific in src/etc/rc reorder_libs() what filesystems need r/w remount and ensure that their mount state is restored. Idea and positive feedback from deraadt@ OK aja@ tb@ | |||
2017-11-03 | update reference to ports www page after it moved. | Steven Mestdagh | |
ok jca@ tb@ | |||
2017-11-02 | Capability dc is supported by cu(1) since r1.22. | remi | |
ok nicm@ danj@ jca@ jmc@ | |||
2017-11-02 | sundry tweaks; ok mpi | Jason McIntyre | |
2017-11-02 | sync | Martin Pieuchot | |
2017-11-02 | Switch DEC 3000 (TURBOchannel) alpha serial code to MI z8530 code. | Martin Pieuchot | |
ttyB* minor numbers change; be sure to rerun MAKEDEV if you do not upgrade with bsd.rd Adapted from NetBSD by miod@ | |||
2017-11-01 | add missing El, though i'm sort of guessing as to its position; | Jason McIntyre | |
2017-11-01 | Update ruby-module.5 for default ruby version switch from 2.3 to 2.4 | Jeremy Evans | |
Also remove ruby 1.8, 2.1, and 2.2 information, as that support was removed. Additionally, extconf CONFIGURE_STYLE support was removed, so remove mention of that as well. | |||
2017-10-30 | List bwfm(4) in usb(4). | Patrick Wildt | |
Prompted by and ok jmc@ | |||
2017-10-30 | Fix grammar mistake I was supposed to fix before committing. | Patrick Wildt | |
2017-10-30 | Add bwfm(4) manpage. | Patrick Wildt | |
ok stsp@ |