summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-09-16add Vaisala's "USB instrument cable" entryYojiro Uo
2011-09-16regenYojiro Uo
2011-09-16add entry for FX-5204PSYojiro Uo
2011-09-16regenYojiro Uo
2011-09-16fix very old usb vendor id mismatchYojiro Uo
The VID: 0x430 is not owned by SUN microsystems, it is owned by Fujitsu Component, Inc. ok deraadt@
2011-09-16use the correct regexp to find the ldapd server processRobert Nagy
from MERIGHI Marcus <mcmer-openbsd@tor.at>
2011-09-16Add a script for popa3d to support running it outside of inetd.Robert Nagy
2011-09-16RFC-2822 -> RFC 2822Jason McIntyre
2011-09-15gcc4 Wbounded regression output.Nicholas Marriott
2011-09-15Port the -Wbounded extension from gcc3 to gcc4. Based on work started byNicholas Marriott
jasper@. This omits the sizeof(pointer) tracking which is very difficult to implement for gcc4 due to internal changes. Thanks to landry@ for running through a ports bulk build and both landry@ and jasper@ for fixing a few issues. ok deraadt millert jasper
2011-09-15Fix recognition Synaptics touchpadAlexandr Shadchin
from Patrick Keshishian (sidster at boxsoft dot com)
2011-09-15Fix up age_encap() / age_start()..Kevin Lo
- Remove unnecessary nsegs variable from age_encap() and use map->dm_nsegs. Also remove unnecessary FreeBSD check for 0 DMA segments check. - Remove printfs in age_encap() failure paths that shouldn't be there. - Add missing IF_PREPEND() from failure path coming off of age_encap() within age_start(). - Fix error handling within age_encap(). Previously age_encap() was attempting to unload a DMA map upon failure from bus_dmamap_load_mbuf() even though one wasn't loaded at that point and then always forcing mbufs through the EFBIG path. Tested by Thomas Pfaff. From Brad.
2011-09-15Switch vax to timecounters. There are three different clock sources:Miod Vallat
- ICR/NICR on most systems (1MHz counter resolution). - diagnostic timer on KA46/KA48 (1kHz counter resolution, counter is actually running at around 1024 kHz but is not guaranteed to be monotonic at this rate). - 100Hz clock on VXT (nothing but the 100Hz clock interrupt). Tested on KA49 (ICR style), KA46, KA48 (diagtmr style), VXT2000+ (VXT {empty,hopeless}ness'r'us style).
2011-09-14update vt100 example to vt200, as vt100 apparently is no longer in theJason McIntyre
termcap database; from Nils Anspach ok nicm
2011-09-14Initial kernel support for sandybridge intel chipsets in intagp and inteldrm.Owain Ainsworth
Far from perfect. Extra (almost essential) features like the extra ringbuffers are not yet supported (I have half a diff), but this and the appropriate ddx patches allow modesetting and basic shadow acceleration. Initial work by jcs@, a few cleanups and bugfixes by me. Tested by many on all appropriate chipsets. ok kettenis@
2011-09-14ntpd doesn't really support reload, so don't allow it in the rc script.william
ok ajacoutot robert
2011-09-13For threads in PS_FDR_WAIT state, check SA_RESTART before marking it asFederico G. Schwindt
interrupted, thus simulating the system call restart behaviour in the non-pthreads case. Add a state for kevent since it shouldn't be restarted regardless of SA_RESTART being present. guenther@ ok.
2011-09-13first round of tests to check system calls restarting with pthreads.Federico G. Schwindt
guenther@ ok
2011-09-13On KA43:Miod Vallat
- silence noisy print of cache control registers at cache initialization time (but not during memory errors or machine checks). - correctly access the prom mailbox register, so that halt and reboot work as intended (from NetBSD).
2011-09-13as per date(1) and touch(1), document default values used when "yy" isJason McIntyre
given, but not "cc"; ok millert
2011-09-13Fix up ale_encap() / ale_start():Kevin Lo
- Remove unnecessary nsegs variable from ale_encap() and use map->dm_nsegs. Also remove unnecessary FreeBSD check for 0 DMA segments check. - Remove printfs in ale_encap() failure paths that shouldn't be there. - Add missing IF_PREPEND() from failure path coming off of ale_encap() within ale_start(). - Fix error handling within ale_encap(). Previously ale_encap() was attempting to unload a DMA map upon failure from bus_dmamap_load_mbuf() even though one wasn't loaded at that point and then always forcing mbufs through the EFBIG path. Tested by Johan Torin. From Brad
2011-09-13Fix up alc_encap() / alc_start():Kevin Lo
- Remove unnecessary nsegs variable from alc_encap() and use map->dm_nsegs. Also remove unnecessary FreeBSD check for 0 DMA segments check. - Remove printfs in alc_encap() failure paths that shouldn't be there. - Add missing IF_PREPEND() from failure path coming off of alc_encap() within alc_start(). - Fix error handling within alc_encap(). Previously alc_encap() was attempting to unload a DMA map upon failure from bus_dmamap_load_mbuf() even though one wasn't loaded at that point and then always forcing mbufs through the EFBIG path. Tested by Gabriel Linder. From Brad
2011-09-13Do not invoke hardclock() until cpu_initclocks() has been invoked; avoidsMiod Vallat
a NULL pointer dereference because the softclock interrupt handler cookie is not initialized yet. Found the hard way and fix tested by aoyama@
2011-09-12- (-t) use macros instead of punctuation, to avoid marking up theJason McIntyre
whole argument as an Ar block - (-t) remove a superfluous set of [] around "mm" ok sobrado millert
2011-09-12- introduce filtermask in struct smtpdGilles Chehade
- do not forward lines to mfa when FILTER_DATALINE is not set in filtermask prevents smtpd from handling mails slowly while I'm hacking on filters support
2011-09-12Update to tzdata2011j from elsie.nci.nih.goTodd C. Miller
2011-09-12Clamp a maximum number of outstanding requests at 40 as it wasMike Belopuhov
figured out the hard way by senior Pedro. Performance decreased severely with newer firmwares when ioc was stuffed with requests. Unfortunately it still remains a magic number as LSI doesn't clearly document what it has to be (controllers report some meaningless values like 3167 and 1952). ok dlg
2011-09-12fix leak in do_lsreaddir(); ok djmMarkus Friedl
2011-09-11remove unused headerCharles Longeau
ok gilles@
2011-09-11Define symbolic constants for the addresses of the vsbus devices onMiod Vallat
512KB PROM systems (e.g. KA49), or 256KB PROM systems built after KA49 (e.g. KA5[234]), and use them instead of pouring magic numbers all over the (md) tree. No functional change.
2011-09-11fix leaks in do_hardlink() and do_readlink(); bz#1921Markus Friedl
from Loganaden Velvindron
2011-09-11Fix inverted test when selecting resolution on the 1024x864 VLC frame buffer.Miod Vallat
2011-09-11Mention the 1GB offset PROM limit on some systems.Miod Vallat
2011-09-11document new -O cancel command; ok djm@Okan Demirmen
2011-09-10support cancellation of local/dynamic forwardings from ~C commandline;Markus Friedl
ok & feedback djm@
2011-09-10Another small tidy up. ok jmc@lum
2011-09-10let pkg_mklocatedb work consistently with SUBDIRLIST (print only theMarc Espie
fullpkgpaths referenced there and nothing more)
2011-09-09support for cancelling local and remote port forwards via the multiplexDamien Miller
socket. Use ssh -O cancel -L xx:xx:xx -R yy:yy:yy user@host" to request the cancellation of the specified forwardings; ok markus@
2011-09-09kill the preauth privsep child on fatal errors in the monitor;Damien Miller
ok markus@
2011-09-09suppress adding '--' to remote commandlines when the first argumentDamien Miller
does not start with '-'. saves breakage on some difficult-to-upgrade embedded/router platforms; feedback & ok dtucker ok markus
2011-09-09use .St -iso8601-4;Jason McIntyre
2011-09-09add an St macro for ISO 8601:2004;Jason McIntyre
ok kristaps (who will update the mandoc repo)
2011-09-09add /var/nsd/;Jason McIntyre
2011-09-09MUX_C_CLOSE_FWD includes forward type in message (though it isn'tDamien Miller
implemented anyway)
2011-09-09fix typo in IPQoS parsing: there is no "AF14" class, but there isDamien Miller
an "AF21" class. Spotted by giesen AT snickers.org; ok markus stevesk
2011-09-09Add -b option which allows the client side to bind the socket to aChristiano F. Haesbaert
numeric address. Requested by mikeb@ in order to test ipsec. ok mcbride mikeb djm jmc
2011-09-08Sync protocols 43 (ipv6-route) & 44 (ipv6-frag) names with IANA database.Matthieu Herrb
ok henning@, bluhm@
2011-09-08sys/types.h is needed before sys/socket.hgiovanni
spotted by Thomas de Grivel, ok matthew@
2011-09-08some additional information on the -d option, for clarification;Jason McIntyre
ok millert guenther
2011-09-08Provide namespace-safe alignment macros in <machine/_types.h>, withPhilip Guenthe
compat names kept in <machine/param.h>. In <sys/socket.h>, pull in <sys/_types.h> instead of the namespace polluting <machine/param.h> and completely eliminate __CMSG_ALIGN, replaced by _ALIGN ok deraadt@