Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-14 | fix typos in comments, no code changes; | Ingo Schwarze | |
from Brad Tilley <brad at 16systems dot com>; ok oga@ | |||
2010-01-14 | Restore an if that got lost in the update. | Nicholas Marriott | |
Fixes problems with editors/joe reported by benoit@. | |||
2010-01-14 | Document hw.ncpufound and HW_NCPUFOUND. | Philip Guenthe | |
Document the interpretation of the third and fourth levels of KERN_FILE2. Document that KERN_FILE and KERN_PROC are deprecated in favor of KERN_FILE2 and KERN_PROC2. ok and tweaks jmc@ | |||
2010-01-14 | Document swap-pane -d. | Nicholas Marriott | |
2010-01-14 | Permit S- prefix on keys for shift. Relatively few terminals support this | Nicholas Marriott | |
(basically xterm only) and even fewer have them in terminfo (kLFT2 and kRIT2). | |||
2010-01-14 | henning and I are both dumbasses, testing &foo against NULL is pointless. | Ryan Thomas McBride | |
ok claudio | |||
2010-01-14 | new test for vstat | Marc Espie | |
2010-01-14 | fix new vstat, and make it useful, for instance for -n. | Marc Espie | |
2010-01-14 | SiS devices seem unable to reset dma block index to zero, causing | Alexandre Ratchov | |
dma to start at the wrong place. Workaround this limitation by starting at the current offset. From Christopher Zimmermann <madroach at zakweb.de> Thanks a lot! ok jakemsr | |||
2010-01-14 | Use a more accurate algorithm to calculate clock tick duration | Alexandre Ratchov | |
when resampling is involved. Removes single sample jitter, which could confuse programs expecting fixed block size. | |||
2010-01-14 | Use -C option to specify recorded channel range instead of -c which | Alexandre Ratchov | |
is for played channels. spotted by Jan Stary <hans at stare.cz>, thanks | |||
2010-01-14 | tweak previous; | Jason McIntyre | |
2010-01-14 | set group+owner as some tests require both | Marc Espie | |
2010-01-14 | When trying to get a stack trace, consider CKSEG1 addresses as invalid, as the | Miod Vallat | |
kernel will never use them for code or stack. | |||
2010-01-14 | Let the nmi handler code compile on non-MULTIPROCESSOR kernels. | Miod Vallat | |
2010-01-14 | Sentences end with periods. | Ted Unangst | |
2010-01-14 | add a little devices section, so somebody has a change of finding out if | Ted Unangst | |
their gizmo is supported. incomplete, but it can grow. ok deraadt, some hints jmc | |||
2010-01-14 | Include the link-level header in the hex output if both the -x and -e | Joel Sing | |
options are specified. ok claudio@ sthen@ deraadt@ jmc@ | |||
2010-01-14 | Print sense data during SCSIDEBUG again. Always print the decoded | Kenneth R Westerback | |
data when SCSIDEBUG is set, irrespective of SCSI_SILENT. Tweak output a bit. Noticed in output generated by todd@. | |||
2010-01-14 | Destatic. | Joel Sing | |
ok kettenis@ claudio@ naddy@ | |||
2010-01-14 | Fix build on gumstix; rename IPL_SOFTSERIAL to IPL_SOFTTTY and | Kevin Lo | |
eliminate the unused IPL_SERIAL. ok drahn@ | |||
2010-01-14 | When printing states in debug output, print the rule number that created | Ryan Thomas McBride | |
it if we have it. Requested by dlg, ok henning. | |||
2010-01-14 | i forgot to remove a now obsolete comment in pf_create_state about | Henning Brauer | |
incorrect error handling | |||
2010-01-14 | Same type of as in libc/libc/gen/readpassphrase.c 1.22. Receiving | Theo de Raadt | |
multiple signals into one variable means older signals are dropped. ok dtucker | |||
2010-01-14 | drop connections to confused clients who do repeated command failures - | Bob Beck | |
typically when a client just flings commands at us without looking for responses and then gets confused. ok jsing@ | |||
2010-01-14 | Tweak names a bit. show_mem -> scsi_show_mem, show_scsi_xs -> | Kenneth R Westerback | |
scsi_xs_show. No functional change. | |||
2010-01-14 | Similar fix for default route printing as done in netstat. Make sure mask | Claudio Jeker | |
is 0 when sa_len is 0. | |||
2010-01-14 | in pf_create_state, when we fixed the leaks, we were a bit too trigger | Henning Brauer | |
happy and went to use after free instead. ryan and I think we found the reason - just freeing that state keys in the error path is wrong as well, since pf_state_key_setup could have found existing, identical state keys and linked our state to these. if we now free them the other state that hung of these state keys would point back to the freed state keys. so instead of manually trying to free the state keys just call pf_state_key_detach which has all the magic checks. with and ok ryan | |||
2010-01-13 | netmask sockaddrs for the default route may set sa_len to 0 to indicate | Claudio Jeker | |
a all zero mask. So check for this condition as well since else we read garbage that comes after the netmask sockaddr (which is the IFP normaly). Found by todd@, OK dlg@ | |||
2010-01-13 | when using ChrootDirectory, make sure we test for the existence of the | Damien Miller | |
user's shell inside the chroot; bz #1679, patch from alex AT rtfs.hu; ok dtucker | |||
2010-01-13 | in pf_state_key_detach, ensure that the state key pointer on the state | Henning Brauer | |
is not null, to be safe and to be able to call this with half setup states. with and ok ryan | |||
2010-01-13 | Make sure that acpitz is always the last one to replace the global | Marco Peereboom | |
cpu_setperf pointer so that it is always the first to be notified of any changes. This fixes the reported "creeping up" of performance level when using apmd and several overheating issues people reported. Tested by many, ok kettenis with a large XXX on it. | |||
2010-01-13 | Freeze the secondary CPU later in the nmi handling, and put it in a better | Miod Vallat | |
state from a ddb point of view. | |||
2010-01-13 | Crude handler for the Octane NMI button, for kernels compiled with | Miod Vallat | |
option DDB. | |||
2010-01-13 | Do not lose ra on the first loop (regression from 1.20) | Miod Vallat | |
2010-01-13 | - move the separator so it's just displayed for files with diffs to | Stuart Henderson | |
review, specifically it's now not printed for every auto-installed file, giving a much more compact output. ok ajacoutot@ - skip the blank line before 'Comparison complete' suggested by ajacoutot. | |||
2010-01-13 | sftp.1: put ls -h in the right place | Jason McIntyre | |
sftp.c: as above, plus add -p to get/put, and shorten their arg names to keep the help usage nicely aligned ok djm | |||
2010-01-13 | New options 'S', as a shorthand for the options most suitable as an | Otto Moerbeek | |
extra safeguard (FGJ). Idea from deraadt@; ok deraadt@ dlg@ | |||
2010-01-13 | Double and in comment. | Claudio Jeker | |
2010-01-13 | Fix another long standing double scsi_done() bug. This time when a | Kenneth R Westerback | |
POLL'ed command returned a SENSE error. Found on claudio's USB stick which doesn't like SYNCH CACHE commands. ok dlg@ | |||
2010-01-13 | Fix problems with incomplete arrays that was fixed in other ospfctl | Jonathan Gray | |
based programs a few months back. ok claudio@ | |||
2010-01-13 | sync with mirrors.dat update | Stuart Henderson | |
2010-01-13 | revert previous and allow reading the last element of the array; ok deraadt@ | Christian Weisgerber | |
2010-01-13 | errors spotted by lint | Theo de Raadt | |
2010-01-13 | Get new xs's with PR_ZERO to ensure all shiny new fields get | Kenneth R Westerback | |
initialized. Bring back panics on non-NULL done and cookie fields, but put inside DIAGNOSTIC. ok dlg@ | |||
2010-01-13 | remove subnetsarelocal / SUBNETSARELOCAL. it's been off by default since | Henning Brauer | |
1996 with no way to enable but kernel config or code mods and is bound to classful adressing anyway. | |||
2010-01-13 | no point in looking for the old "all host bits zero" broadcast address any | Henning Brauer | |
more here either | |||
2010-01-13 | 4.2BSD had the host parts bit of the address all zero as broadcast address. | Henning Brauer | |
4.3BSD (anno 1986) supported the host part bits all one for broadcast as well, since that's what everybody agreed on and RFC919 (anno 1984) proposed. now, roughly a quarter decade later, we can really stop supporting the all zero variant. sorry to you guys still running 4.2BSD. ok theo ryan | |||
2010-01-13 | If a process receives two different signals while in readpassphrase, only | Darren Tucker | |
the most recent one will be stored for later re-delivery. When the signal handlers are restored, all except the most recent signal will be lost. Replace the single variable with an array so signals are not lost. ok deraadt@ | |||
2010-01-13 | Rename s/safile/siofile/g, missed when libsa was renamed to | Alexandre Ratchov | |
libsndio. Fixes crashes in full-duplex mode on vax and hp300. |