Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-12-15 | automatic HOSTALIASES setup is a bad idea | Theo de Raadt | |
2015-12-15 | UTF-8 support; does not yet handle the -c option. | Ingo Schwarze | |
No longer expand tabs up front in get_line(), their width depends on the width of characters earlier on the line. Always NUL-terminate the input buffer for easier and safer handling. Get rid of the hand-rolled output buffer, just let stdio do its work. OK tedu@ | |||
2015-12-15 | Sync V4L2 header files with recent Linux kernel. | Ingo Feinerer | |
This introduces the two header files v4l2-common.h and v4l2-controls.h which were split off from videodev2.h (which corresponds to our videoio.h). There will be a second commit just addressing whitespace and formatting. The current version has only real changes whereas the second commit will bring videoio.h in line with videodev2.h formatting so that potential syncs in the future are easier to implement. Bulk build by ajacoutot@; ok robert@, ajacoutot@ | |||
2015-12-15 | Copy state directly rather than dereferencing wl (which could be NULL). | Nicholas Marriott | |
2015-12-15 | Some hooks API changes to fire a hook while waiting another cmdq and | Nicholas Marriott | |
infrastructure that will be needed soon. | |||
2015-12-15 | Do not panic when trying to delete an non-existing route with ART. | Martin Pieuchot | |
Reported by bluhm@, ok jmatthew@ | |||
2015-12-15 | PATCH is like PUT, data is expected. | Reyk Floeter | |
From mxb at alumni chalmers se | |||
2015-12-15 | test some valid UTF-8, but in the C locale | Ingo Schwarze | |
2015-12-15 | test encoding of a few invalid UTF-8 sequences | Ingo Schwarze | |
2015-12-15 | Sync the DB file once when done with fsync(), not on each write with O_SYNC. | Philip Guenther | |
The DB file being written is a temp file, so O_EXLOCK is unnecesary. ok sunil@ gilles@ | |||
2015-12-15 | test vis(3)ing | Ingo Schwarze | |
2015-12-15 | tests for the following keywords: cwd login group rgroup ruser user | Ingo Schwarze | |
2015-12-15 | remove some not interesting debug printfs | Mike Larkin | |
2015-12-15 | regression suite for the "command" keyword | Ingo Schwarze | |
2015-12-15 | if a vcpu run thread in vmd exits unexpectedly, teardown the VM's kernel | Mike Larkin | |
components as well. ok deraadt@ | |||
2015-12-15 | support reset vcpu by triple fault (kernel part, userland fix will come | Mike Larkin | |
later). discussed with deraadt@ and reyk@ at length. | |||
2015-12-15 | Allow list-keys and list-commands to be run without a running server. | Nicholas Marriott | |
2015-12-15 | We changed somewhat recently to us the pty when tmux was run inside | Nicholas Marriott | |
itself to work out the current pane. This is confusing in many cases (particularly notable is that "tmux neww\; splitw" would not split the new window), and the few advantages do not make up for the confusion. So drop this behaviour and return to using the current window and pane; keep the pty check but only use it to limit the list of possible current sessions. | |||
2015-12-15 | Don't copy marked pane when can just point to it. | Nicholas Marriott | |
2015-12-15 | Make the marked pane a cmd_find_state. | Nicholas Marriott | |
2015-12-14 | Use cmd_find_clear_state instead of an extra function doing the same. | Nicholas Marriott | |
2015-12-14 | Use long long rather than off_t for line_no to ensure that it's always | mmcc | |
64 bits. ok kettenis@ | |||
2015-12-14 | Handle the keyboard backlight found on newer Thinkpads. Doesn't handle the | Mark Kettenis | |
machines that have both the keyboard backlight and the thinklight (x230, t430) quite right yet. ok jung@ (for a slightly different version of this diff) | |||
2015-12-14 | Work on a copy of the slowaccept flag instead of the global one as | Alexandre Ratchov | |
it could change somewhere in the poll() loop. | |||
2015-12-14 | move daemon(3) call before chroot(2) in tftpd. | Sebastien Marie | |
so daemon(3) will be able to redirect standard input, standard output and standard error to /dev/null. ok jca@ | |||
2015-12-14 | Move system headers from sh.h to those files that actually need them. | tb | |
ok mmcc@ a while ago | |||
2015-12-14 | Update iwm(4) CAVEATS section in light of initial 802.11n support. | Stefan Sperling | |
pointed out by jmc@ | |||
2015-12-14 | iwm(4) firmware errors during association have been fixed. Remove BUGS section. | Stefan Sperling | |
2015-12-14 | Wrap long lines. | Sunil Nimmagadda | |
Ok gilles@ | |||
2015-12-14 | Wrap long lines and fix bad indents. | Sunil Nimmagadda | |
Ok gilles@ | |||
2015-12-14 | Fix bad indents and whitespaces. | Sunil Nimmagadda | |
Ok jung@ gilles@ | |||
2015-12-14 | Wrap long lines and whitespace fixes. | Sunil Nimmagadda | |
Ok jung@ gilles@ | |||
2015-12-14 | remove trailing whitespace | Joerg Jung | |
ok sunil gilles | |||
2015-12-14 | oops, sorry sunil, -d was in the wrong place: | Jason McIntyre | |
so much for my ok ;( | |||
2015-12-14 | Document -d option. | Sunil Nimmagadda | |
Ok gilles@ jmc@ | |||
2015-12-14 | In AMRR debug printfs, show ni_txmcs instead of ni_txrate for HT nodes. | Stefan Sperling | |
2015-12-14 | Add initial 802.11n support to the iwm(4) driver. | Stefan Sperling | |
Adds support for HT MCS 0-7 (theoretical limit 65 Mbit/s) and the reception of A-MSDU and A-MPDU aggregated frames. None of the optional 11n features are supported for now. MIMO, 40Mhz channels, short guard interval, etc. are left for future work. And we're not sending A-MSDU or A-MPDU frames yet either. Tested with various 11a/b/g/n access points. With some APs I'm seeing a noticable increase in throughput, especially on 5Ghz. Also, fix automatic rate selection by using the current Tx rate selected by AMRR as the upper bound for the firmware's rate table and updating the firmware's table whenever AMRR switches Tx rate, rather than setting the table just once after association and ignoring AMRR updates. ok mpi@ krw@ (earlier version), ok jasper@ | |||
2015-12-14 | various minor tweaks; | Jason McIntyre | |
2015-12-14 | Support only one vcpu for now, until we implement SMP support. | Mike Larkin | |
2015-12-14 | track used memory in each VM. This is passed back to vmctl status. | Mike Larkin | |
ok reyk@, beck@, mpi@ | |||
2015-12-14 | Remove more needless casts of NULL and allocations. | mmcc | |
2015-12-14 | Remove casts of allocations and NULL. There are a *ton* of these to | mmcc | |
remove in libkeynote, but I'm doing it in small chunks so I don't slip up. Previously discussed and approved on the lists, although I backed off after making a dumb mistake in a mega-diff. | |||
2015-12-14 | Remove a superfluous macro. No binary change. ok tb@ | mmcc | |
2015-12-14 | Remove unused macro that's just a clone of abs(3). ok tb@ | mmcc | |
2015-12-14 | initialize ext_len to 0. | Bob Beck | |
ok guenther@ | |||
2015-12-14 | initialize ok to 0 | Bob Beck | |
ok guenther@ | |||
2015-12-14 | initialize md_len to 0 for readability to quell warnings. | Bob Beck | |
ok guenther@ | |||
2015-12-14 | Remove NULL-checks before free(). | mmcc | |
2015-12-14 | s/begining/beginning/g | mmcc | |
2015-12-14 | "harware" -> "hardware" | mmcc | |