Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-09-04 | Zap the simplelock goo and general cleanup of comments. | Thordur I. Bjornsson | |
also, theres no need to check first if we're the kernel pmap and then if we're the curmap in two different if statements, pmap_is_curpmap() check's if we're the kernel pmap, so nuke those tests. ok art@ | |||
2007-09-04 | Add mailbox command handler and "about firmware" command | Marco Peereboom | |
2007-09-04 | Some more simple malloc(n * m) -> calloc(n, m) conversions. | Hans-Joerg Hoexer | |
ok deraadt@ | |||
2007-09-04 | Xr | Theo de Raadt | |
2007-09-04 | UltraSPARC CPUs always have an on-chip FPU. There really is no need to have | Mark Kettenis | |
the code to detect the various FPUs of earlier SPARC V7 and V8 CPUs. ok deraadt@, miod@ | |||
2007-09-04 | driver for i2c lm93 sensor; very common on ipmi machines which have i2c | Theo de Raadt | |
bmc's watching on the shared bus. if you disable ipmi, you might see it pop up (reminder why ipmi / i2c mixes are disabled: some ipmi's seem to violate the i2c bus locking protocol). tested by Alexander Lobodzinski | |||
2007-09-04 | Removed dead code. | Tobias Stoeckmann | |
OK joris@, ray@ | |||
2007-09-04 | Replaced strlen() with sizeof() - 1 when #define'd strings are used. | Tobias Stoeckmann | |
OK ray@ | |||
2007-09-04 | Reset the chip after internal memory exhaustion, makes the driver more solid | Miod Vallat | |
with heavy NFS usage. | |||
2007-09-04 | use memrchr; ok millert@. | Federico G. Schwindt | |
2007-09-04 | Add the ability to specify a host header when using http(s) check methods. | Pierre-Yves Ritschard | |
Prodded by me, done by Gille Chehade <veins@evilkittens.org> ok reyk, jmc for the manpage bits. | |||
2007-09-04 | Handle ^D as a)bort in log message question. | Tobias Stoeckmann | |
OK joris@ | |||
2007-09-04 | make ssh(1)'s ConnectTimeout option apply to both the TCP connection and | Damien Miller | |
SSH banner exchange (previously it just covered the TCP connection). This allows callers of ssh(1) to better detect and deal with stuck servers that accept a TCP connection but don't progress the protocol, and also makes ConnectTimeout useful for connections via a ProxyCommand; feedback and "looks ok" markus@ | |||
2007-09-04 | small fix in the error path when accepting new relay sessions | Reyk Floeter | |
2007-09-04 | support chained ssl certificates; a chain can be added to the | Reyk Floeter | |
PEM-encoded server cert file (no CA support yet). makes a chained ssl certificate from Comodo work with hoststated, also tested with other certs (self-signed, Thawte Premium) thanks to ben (pr0ncracker at gmail dot com) | |||
2007-09-04 | make file descriptor passing code return an error rather than call fatal() | Damien Miller | |
when it encounters problems, and use this to make session multiplexing masters survive slaves failing to pass all stdio FDs; ok markus@ | |||
2007-09-04 | Use err(3) functions. input and ok millert. | Federico G. Schwindt | |
2007-09-03 | Fix a few interrupt dispatch/receive register definitions. | Mark Kettenis | |
2007-09-03 | Update free(3) section--we use mmap()/munmap(), not brk(). | Todd C. Miller | |
Based on a diff from Mike Belopuhov. OK jmc@ | |||
2007-09-03 | move back to using malloc() instead of calloc(), because the yacc | Theo de Raadt | |
skeleton really should only call malloc/realloc/free, no other external APIs at all. theefore, add a pre-check for the overflow case, thus protecting realloc too; tested mblamer, ok millert, help from kettenis | |||
2007-09-03 | there is a prototype version of the lm93 (plus spacing fixes) | Theo de Raadt | |
2007-09-03 | Recognize Andigilog aSC7621. | Mark Kettenis | |
ok deraadt@ | |||
2007-09-03 | unsupported ioctl's should be returned with ENOTTY | Thordur I. Bjornsson | |
not -1; ok miod@ | |||
2007-09-03 | call savectx() in cpu_fork(), so that the new process can take signals | Miod Vallat | |
correctly in child_return()'s userret(); makes the sys/kern/signal/earlysig regression test pass. From a 2.5 years old diff I should have commited much earlier. | |||
2007-09-03 | Remove the pv and pte stealing code. Neither art@ and I like it, the | Miod Vallat | |
theoretical gain of it is close to zero, and our moms told us stealing is bad. | |||
2007-09-03 | remove trailing whitespace; | Jason McIntyre | |
2007-09-03 | Bump RTM_VERSION to 4 and start a new aera of routing in OpenBSD :) | Claudio Jeker | |
Changes include 64bit counters instead of u_long, routing table id in the header of most messages, reserved routing priority field, added a hdrlen field to skip over the header so that binary compatibility becomes easier. A minimal backward support for old binaries is included to ease upgrades but don't expect anything more than ifconfig, route and dhclient to correctly work. OK henning@ mglocker@ | |||
2007-09-03 | OpenBSD now has memrchr(3) | Todd C. Miller | |
2007-09-03 | Adapt atexit() regress to recent changes and add __cxa_atexit() regress. | Todd C. Miller | |
__cxa_atexit() regress from kurt@ | |||
2007-09-03 | crank libc and libstdc++ majors | Todd C. Miller | |
2007-09-03 | Add __cxa_atexit() support for gcc3. This provides support for shared ↵ | Todd C. Miller | |
object destructors called at dlclose() time. Inspired by similar changes in FreeBSD and NetBSD. | |||
2007-09-03 | Add ENOMSG and EIDRM; from jsg@ | Todd C. Miller | |
2007-09-03 | add recaloc(3) | Todd C. Miller | |
2007-09-03 | add memrchr(3) | Todd C. Miller | |
2007-09-03 | malloc(n * m) -> calloc(n, m); ok espie | Theo de Raadt | |
2007-09-03 | use calloc() for the sake of regularity, prompted by deraadt@ | Marc Espie | |
Note that I *still* fill every pointer with explicit NULL, for portability. filling with 0 bytes is not necessarily the same as NULL pointers. | |||
2007-09-03 | Unsetting a non-existent variable is not an error. See | Otto Moerbeek | |
http://www.opengroup.org/onlinepubs/009695399/utilities/unset.html report from Arkadiusz Miskiewicz; fixed based on http://cvs.pld-linux.org diff; ok millert@ fgsch@ | |||
2007-09-03 | - break "Defaults env_keep" into several lines so it is more readable | Antoine Jacoutot | |
- add OWNER and GROUP to env_keep so that make-plist creates pkg/P* with the correct uid/gid (hopefully this would be the last ports related change) ok millert@ | |||
2007-09-03 | last commit broke the tree because of missing parentheses. | Moritz Jodeit | |
ok henning@ | |||
2007-09-03 | __inline removal | Jacob Meuser | |
tested on my amd64 from bret.lambert@gmail.com via art@, thanks | |||
2007-09-03 | Only send hash of /etc/ipsec.conf if it changes since it can contain | Joel Knight | |
a pre-shared key ok hshoexer@ cloder@ (some time ago) | |||
2007-09-03 | Make use of the pfsync 'badval' and 'stale' counters instead of using | Joel Knight | |
'badstate' everywhere. ok henning@ | |||
2007-09-03 | Make use of the carp preempt counter to signal number of transitions of | Joel Knight | |
any carp group to master status. ok dhartmei@ | |||
2007-09-03 | sizeof char is 1; ok djm | Theo de Raadt | |
2007-09-03 | unbreak. | Marc Balmer | |
2007-09-03 | Add more PCI ids; taken from the linux driver. Pointed out by Stephan | Marco Peereboom | |
Eisvogel <eisvogel at embinet dot de> | |||
2007-09-03 | sync | Marco Peereboom | |
2007-09-03 | Add some more PCI ids for mpi; pointed out by Stephan Eisvogel | Marco Peereboom | |
<eisvogel at embinet dot de> | |||
2007-09-03 | Typos from miod. 'specificed' -> 'specified' in some comments and man page. | Kenneth R Westerback | |
2007-09-03 | Typos from miod. 'requiered' -> 'required' in some comments. | Kenneth R Westerback | |