Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-12-14 | add usb id for TP-LINK TL-WN722N v2 | Sebastian Benoit | |
ok deraadt@ phessler@ kettenis@ | |||
2017-12-14 | Change bcopy to memcpy in the i386 version of the VIA PadLock driver. | Frederic Cambus | |
It was done a while ago in the amd64 version. OK mlarkin@, deraadt@, dlg@ | |||
2017-12-14 | zap trailing whitespace; | Jason McIntyre | |
2017-12-14 | Repair flushcache/standby operations to not convert AT_WAIT operations | Theo de Raadt | |
to AT_POLL, which some chip driver underneath cannot handle. tested by bluhm also | |||
2017-12-14 | fcntl(F_SETFL) invokes the FIONBIO and FIOASYNC ioctls internally, so | Philip Guenther | |
the memory devices (/dev/null, /dev/zero, etc) need to permit them. problem noted, tweak, and testing by jeremy@ ok deraadt@ | |||
2017-12-14 | i forgot to convert timeout_proc_barrier to cond_signal | David Gwynne | |
2017-12-14 | i forgot to convert ifq_barrier_task to cond_signal. | David Gwynne | |
2017-12-14 | replace the bare sleep state handling in barriers with wait cond code | David Gwynne | |
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-13 | Fix whitespace botch that snuck in. | Kenneth R Westerback | |
2017-12-13 | Simplifiy parser by not worrying about nesting 'interface <if> {}' | Kenneth R Westerback | |
statements. They are silly but harmless and work fine. | |||
2017-12-13 | Fix a softdep bug exposed by our recent changes to make reboot drop to read-only | Bob Beck | |
The deadlock happens when softdep gets the same buffer in the BMSAFEMAP case that it already called getdirtybuf() on and made busy at the top of the loop. when this is the case, skip the BMSAFEMAP case and simply write the buffer out at the bottom of the loop as always. This avoids calling getdirtybuf() a second time on the same buffer we already took for exclusive use ourself and have not yet written out. While I'm in here add a KASSERT for the similar case above, which I don't think can happen but we would deadlock in the same way if it does. testing by and ok bluhm@ | |||
2017-12-13 | Fix array index by signed char; from martijn@ | Todd C. Miller | |
2017-12-13 | Fix sign compare warnings; OK martijn@ | Todd C. Miller | |
2017-12-13 | Enable compiler warnings; OK martijn@ | Todd C. Miller | |
2017-12-13 | Add support for the -d (-o debug) option to libfuse. Currently works for FUSE | helg | |
file systems that call fuse_parse_cmdline(3), fuse_main(3) or fuse_setup(3). ok mpi@, jca@ | |||
2017-12-13 | If the list of templates 'o' passed to fuse_opt_parse(3) is NULL then | helg | |
the processing function should be called in the same way as if no match was found. ok mpi@ | |||
2017-12-13 | Fix stray return; hopefully this makes the internal PHY actually work now. | Mark Kettenis | |
2017-12-13 | Spacing from kshe59@zoho.eu. | Martin Pieuchot | |
2017-12-13 | Sizes for free in route_output(). | Martin Pieuchot | |
From kshe59@zoho.eu. | |||
2017-12-13 | Add 'bt' an alias for 'trace'. | Martin Pieuchot | |
ok pirofti@ | |||
2017-12-13 | getsockname(2) needs to be passed the length of the input struct. | Patrick Wildt | |
ok jca@ | |||
2017-12-13 | report Oracle as the vendor is the produce starts with ORCL, | David Gwynne | |
makes it consistent with reporting Sun or Fujitsu based on produce prefixes. ok kettenis@ | |||
2017-12-12 | Add more Allwinner A80 clocks. | Mark Kettenis | |
2017-12-12 | Fix pfloadanchors tests when running with obj directory. | Alexander Bluhm | |
Remove unused file. | |||
2017-12-12 | Use bn_checkp() always; from kshe | Otto Moerbeek | |
2017-12-12 | Minor cleanup from kshe | Otto Moerbeek | |
2017-12-12 | optimize add, sub and mul; from kshe; ok tom@ | Otto Moerbeek | |
2017-12-12 | Consistently use .Va for "errno"; | Ingo Schwarze | |
patch from Jan Stary <hans at stare dot cz>; "I think it makes sense to speak about errno as a variable (.Va)" jca@. | |||
2017-12-12 | Only trigger background scans while we are in RUN state, and do not update | Stefan Sperling | |
a node's RSSI info while we are still in INIT state. ok phessler@ | |||
2017-12-12 | Make ieee80211_chan2ieee() panic if a bogus channel pointer is detected. | Stefan Sperling | |
ok patrick@ | |||
2017-12-12 | Make IEEE80211_CHAN_ANYC be a NULL pointer instead of a pointer to 0xffff. | Stefan Sperling | |
Should speed up debugging. ok phessler patrick | |||
2017-12-12 | ld.so's syscall _dl_* API/ABI doesn't reurn errno, but -errno. | Theo de Raadt | |
Reviewing behaviour artifacts with pledge, I discover a close(-ENOSYS).. ok guenther | |||
2017-12-12 | Create a persistent umac128.c source file: #define the output size and | Christian Weisgerber | |
the name of the entry points for UMAC-128 before including umac.c. Idea from FreeBSD. ok dtucker@ | |||
2017-12-12 | Don't dereference IEEE80211_CHAN_ANYC pointer in ieee80211_node_checkrssi(). | Stefan Sperling | |
Problem reported by Gregoire Jadi on bugs@ | |||
2017-12-12 | Allow interfaces that aren't SCANNALLBAND drivers to benefit from the | Peter Hessler | |
strongest received signal. OK stsp@ | |||
2017-12-12 | Fix 2 bugs introduced by previous. | Martijn van Duren | |
Pointed out by kshe59 <at> zoho <dot> eu OK millert@ | |||
2017-12-12 | Nuke some forward-only struct's and functions and functions thereby | Kenneth R Westerback | |
made empty. Found by new ctfconv(1) feature and validated by clang. ok mpi@ | |||
2017-12-12 | Document change in the default shell prompts. | Theo Buehler | |
Discussed with and ok jmc | |||
2017-12-12 | Remove unused variable defined with an unexisting type. | Martin Pieuchot | |
Found with ctfconv(1). ok jsg@, dlg@ | |||
2017-12-12 | space required between macro arg and punctuation; | Jason McIntyre | |
2017-12-12 | Fix typo. Unbreaks building a kernel on arm64/clang. | Mark Kettenis | |
2017-12-12 | Avoid undefined behaviour in rorate_left() macro. From NetBSD via FreeBSD. | Mark Kettenis | |
Makes gas work when compiled with clang. ok patrick@, millert@ | |||
2017-12-12 | stray , snuck in | Theo de Raadt | |
2017-12-12 | spacing | Theo de Raadt | |
2017-12-12 | sync | Theo de Raadt | |
2017-12-12 | pledge()'s 2nd argument becomes char *execpromises, which becomes the | Theo de Raadt | |
pledge for a new execve image immediately upon start. Also introduces "error" which makes violations return -1 ENOSYS instead of killing the program ("error" may not be handed to a setuid/setgid program, which may be missing/ignoring syscall return values and would continue with inconsistant state) Discussion with many florian has used this to improve the strictness of a daemon | |||
2017-12-12 | Fix the behavior of preferring weaker-but-still-good 5Ghz APs over | Joshua Stein | |
2Ghz APs because the 5Ghz band is generally less saturated. The previous implementation was dependent upon the order of walking APs. ok stsp | |||
2017-12-12 | Include hostname in shell prompts by default | Theo Buehler | |
With tmux, ssh and vmd, we tend to open shells on many different hosts simultaneously and the default prompts '$ ' and '# ' for {,k}sh as well as '% ' and '# ' for csh become dangerous: it's very easy to issue a command on the wrong host. This can easily be avoided by displaying the hostname in the prompt. Everything beyond "hostname{$,#,%} " is going to be a matter of taste, so we left it at that. If you use an FQDN, only the first part (the output of 'hostname -s') will be printed. requested by and ok deraadt; mostly positive feedback many ok anton, brynet, bcallah and others | |||
2017-12-11 | The code can be simplified by using clock_gettime(2)'s CLOCK_REALTIME | Theo Buehler | |
instead of gettimeofday(2). From Scott Cheloha, ok jca |