summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-03-05since the bus_space_barrier function does the same membar operation forTheo de Raadt
all cases, it should not waste time doing extra if/else if/else if/else conditions. i wonder how much this is going to speed up sparc64... ok miod kettenis
2011-03-05Cronyx Omega-PCI is supported; from Alexei MalininJason McIntyre
2011-03-05fix description of -g; from Pascal StumpfJason McIntyre
2011-03-05tweak; ok okanJason McIntyre
2011-03-05Correct msgbuf_write() example. OK jmc@ and nicm@Claudio Jeker
2011-03-05Wait until the DMA engine is stopped before unmapping buffers and descriptors.Mark Kettenis
Fixes DMA errors seen on sparc64. ok miod@
2011-03-05Minor polishing that was missed during the recent rc.subr(8) split:Ingo Schwarze
* Avoid markup of "daemon" when not explicitly referring to the variable. * Improve some wording, remove one typo and one useless .Pp. Reminded by jmc@, ok jmc@ ajacoutot@
2011-03-05If an auto-allocation scheme fails because there are not enoughKenneth R Westerback
available partitions (e.g. many spoofed logical partitions) try the next scheme rather than giving up. "sane" deraadt@ ok matthew@
2011-03-05The function pf_tag_packet() never fails. Remove a redundant checkAlexander Bluhm
and make it void. ok henning@, markus@, mcbride@
2011-03-04Add TouchScreen support. Makes newer Gunze USB TouchScreen devices work.Mark Kettenis
ok deraadt@
2011-03-04Apparently keeping some USB devices in reset for too long makes themMark Kettenis
non-functional. Reduce the root port reset delay to 100 ms. This is still twice as long as the delay mandated by the standard, but makes the Gunze TouchScreen on the Sony Vaio VGN-UX91S and a few other devices work. ok jakemsr@
2011-03-04kill is_rx_elem_unknown.Federico G. Schwindt
damien@ ok. ports checked by sthen@.
2011-03-04Two fixes by Micah Cowan: make mouse work properly beyond >127 on signedNicholas Marriott
char architectures and properly parse $TMUX by stopping the socket path at the first comma.
2011-03-04gather most pci conf register manipulation into a new function,Jacob Meuser
azalia_configure_pci(). use that function in azalia_attach() and azalia_resume(). fixes post-resume "static" during playback for some machines with ATI chipsets.
2011-03-04add support for the (POSIX) -H flagOkan Demirmen
feedback and ok millert@, sobrado@, jmc@
2011-03-04add -W flag (whiteexp), as opposed to pulling in a hardcoded defaultOkan Demirmen
value from spamd/grey.c; mostly from ohauer@gmx.de in PR/6142. ok beck@
2011-03-04Peek at the interrupt status register before poking with the reply postMike Belopuhov
queue. In some situations this prevents us from reading a garbled reply. If this commit breaks your mpi, please report ASAP. The issue was reported and the fix was verified by Emeric Boit. Thanks! Ok dlg, kettenis, marco (who warned us and wanted to test more)
2011-03-04Indent block correctly.Claudio Jeker
2011-03-04add -H (opposite of -h) to always print name. ok deraadt millertTed Unangst
2011-03-03repair arguments passed to pfctl; PR 6142, ok beckTheo de Raadt
2011-03-03Prevent division-by-zero when scaling down to the screen resolution. MakeMark Kettenis
the WSMOUSEIO_SCALIBCOORDS fail with EINVAL if the settings would cause a division-by-zero. ok deraadt@
2011-03-03Crank MAXDSIZ up to 2G on macppc and socppc.Antoine Jacoutot
ok miod@ drahn@ kettenis@
2011-03-03Remove expired certs.David Hill
ok beck@ fgsch@
2011-03-03Reset the SIGPIPE signal handler immediately before executing a command.Todd C. Miller
We ignore it by default so cron doesn't die if sendmail is missing or exits prematurely but the actual command being run should have the default handler installed.
2011-03-03Use dirfd() instead of peeking into struct dirent for dd_fd, which isTodd C. Miller
non-standard.
2011-03-03- remove unused devices for which we have no drivers (yet?)Jasper Lievisse Adriaanse
ok miod@
2011-03-03Fix a typo that meant we did not reset the background colour when it wasNicholas Marriott
omitted in a 256-colour SGR ([48;5m). From Yusuke ENDOH.
2011-03-03Add a -P option to detach to HUP the client's parent process (usuallyNicholas Marriott
causing it to exit as well).
2011-03-03fix ss_to_text() and ss_to_ptr() so IP addresses are logged correctlyGilles Chehade
on big-endian machines ... spotted and tested by landry@ (and I)
2011-03-03This change makes ping compare minimum amount of bytes between whatMike Belopuhov
was received and what was sent out and print additional information explaining payload size differences. Issue was found by reyk, debugged by jsg and me with an input from claudio (who found out that initial version breaks -w) and bluhm (who advised to notify a user). Ok bluhm and deraadt on the previous version of the diff. Lots of history for a one-liner :)
2011-03-02mention -U as global position-independent parameterAlexandre Ratchov
from Remco <remco at d-compu.dyndns.org>, thanks!
2011-03-02Fix patently broken handling of ios_base::showpos: "cout << showpos <<Matthew Dempsky
0" should output "+0", not "0". Diff from upstream (which is still GPLv2+) via Brad.
2011-03-02Add the socket splicing fields of struct socket to netstat -vPAlexander Bluhm
output for debugging. ok markus@, claudio@
2011-03-02Fix __cxa_finalize() so that calling __cxa_finalize(NULL) properlyMatthew Dempsky
invokes handlers registered with __cxa_atexit(). "seems right" deraadt@
2011-03-02Change va_arg and va_end definitions from object-like macros toMatthew Dempsky
function-like macros. Allows (questionable but legal) use of "va_arg" as a local variable name in code that includes <stdarg.h>. "seems right" deraadt@
2011-03-02Don't use a flag value as index into the 2 element array on_off.Alexander Bluhm
Fixes a segmentation fault. ok deraadt@
2011-03-02when sending deferred packets use ip6_output for v6 frames instead ofDavid Gwynne
blindly assuming everything is v4 to be sent with ip_output. problem originally reported by Marco Fretz. fix verified locally. ok henning@ mcbride@
2011-03-02define HANDLE_PRAGMA_PACK_PUSH_POP just like on other platformsRobert Nagy
to get #pragma pack and #pragma push work in order to be compatible with MS compilers because there is some code out there (e.g. chromium) that uses these pragmas. ok kettenis@
2011-03-02Allow the kernel to compile with IEEE80211_DEBUG.Federico G. Schwindt
deraadt@ ok.
2011-03-02zap trailing whitespace;Jason McIntyre
2011-03-02grammar fix: from David H. Gutteridge, netbsd pr bin/44645Jason McIntyre
2011-03-02netbsd -r1.75: Fix argument for EL_EDITOR; from Jess ThrysoeeJason McIntyre
ok nicm
2011-03-02no need for a separate NOTES section; ok henningJason McIntyre
2011-03-02- change recieved -> received in comments, as well as two unused definesJasper Lievisse Adriaanse
in pxe.h. ok deraadt@ sthen@
2011-03-02- use a common FIELD_ADDR macro, instead of rolling 78 identical copies.Jasper Lievisse Adriaanse
ok canacar@
2011-03-02fix typo; spotted by Peter J. PhilippTheo de Raadt
2011-03-02Every time the user updates the bounds of the OpenBSD area of the disk, ↵Kenneth R Westerback
either explicitly or implicitly, update the start and end sector of the OpenBSD area in the disklabel with DL_SEBEND/DL_SETBSTART. Otherwise the new bounds would not be saved to disk. ok miod@ deraadt@
2011-03-02Sync ASC/ASCQ errors with www.t10.org/lists/asc-num.txt of 11/15/10.Kenneth R Westerback
Prompted by dlg@'s tape library trying to report a failure to thread a media (0x53, 0x04).
2011-03-02spelling error in comment; from bradTheo de Raadt
2011-03-02enable POOL_DEBUG again since we are not in releaseTheo de Raadt