summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-05-05Use rtm_hdrlen instead of the static header length. OK norby@Claudio Jeker
2008-05-05Put relay sockets in non blocking mode too. This got forgotten along thePierre-Yves Ritschard
way and didn't show since our read buffers are small. ``put it in'' reyk@
2008-05-05Don't set the adaptor template link's flags and quirks when trying toKenneth R Westerback
set the flags and quirks for a device. Should fix weird issues where the device after an ATAPI device gets marked as ATAPI. First reported on misc@ by Daniel Wade, who also provided some useful testing. ok dlg@
2008-05-05Make umsm only claim a single interface so it doesn't matchJonathan Gray
on umass interfaces, and add Huawei E220. From rivo nurges <rix@estpak.ee>. And add another device while here.
2008-05-05regenJonathan Gray
2008-05-05Another msm.Jonathan Gray
Reported on misc@ by Denis Doroshenko <denis.doroshenko@gmail.com>
2008-05-05syncTheo de Raadt
2008-05-05Constantly fill in the program header pointer and count in elf_object_tKurt Miller
for all objects which simplifies phdr usage in a few places. "go for it" drahn@
2008-05-04Add ping6 and rtsol.Brad Smith
ok miod@
2008-05-04convert to ptoa/atopMartin Reindl
tested by maja@
2008-05-04Some additional tests.Brad Smith
From the libevent SVN repo. ok millert@
2008-05-04macobio(4): add openpic(4)Jason McIntyre
openpic(4): tweak previous
2008-05-04Manage interrupts based on priority better, still working on this...Dale Rahn
2008-05-04Update to sendmail-8.14.3Todd C. Miller
2008-05-04openpic(4) bits. OK drahn@.Xavier Santolaria
2008-05-04Unpopulated CRIME memory banks (or logically empty due to CRIME mergingMiod Vallat
contiguous 64MB DIMMs in a single 128MB one) are not reported as memory at offset zero, but actually as duplicates of the first entry (which always matches real memory). If the DIMMs are set up in decreasing sizes, as recommanded by SGI, the first entry will be configured at offset zero, so the existing code would run fine. If, however, you order your DIMMs in a different order, the first entry might not be at offset zero, so the kernel will mess up its memory information, which will cause random effects from simply misreported memory sizes, to the inability to boot. Fix this by strengthening the check for an empty bank. Problem reported by Jason Bergstrom (bergie, bergie dot net), analysis and fix by me.
2008-05-04convert arm and mips64 platforms to ptoa/atopMartin Reindl
tested by maja@
2008-05-03Rework the interrupt calculation masks, a bit easier to follow (not so wrong).Dale Rahn
2008-05-03add stmp-dirs to dependancy list, fixes a make -j issue seen on macppcDale Rahn
"looks okay" espie@
2008-05-03catch up with curpriority changes and convert to ptoa/atopMartin Reindl
ok miod@
2008-05-03add missing header for closeCharles Longeau
ok otto@ espie@ millert@
2008-05-03Do not acquire the kernel lock for SY_NOLOCK system calls; ok drahn@ kettenis@Miod Vallat
2008-05-03mpcpcibr(4) bits. OK drahn@.Xavier Santolaria
2008-05-03Introduce vop_generic_bmap(); use it where applicable.Thordur I. Bjornsson
one thing of note, fifofs changes in that its bmap now sets the runp too 0, but that was an oversight in the old code. ok art@
2008-05-03remove unused functionsCharles Longeau
from tobias@ ok ray@ tobias@
2008-05-02implement rw_cas, "go for it" miod@Dale Rahn
2008-05-02Check for a disabled FPU before attempting to emulate the instruction.Miod Vallat
2008-05-02Grab the biglock unconditionnaly when system calls go through systrace;Miod Vallat
spotted by drahn
2008-05-02Implement rw_cas correctly, unlike previous revision where I was obviouslyMiod Vallat
on drugs; ok kettenis@
2008-05-02Invalidate and initialize the l2 on secondary processors, ok kettenis@Dale Rahn
2008-05-02- Use a const pointer for bufferevent_write.Brad Smith
- Make event_init return struct event_base *. From the libevent SVN repo. ok millert@
2008-05-02- Increment MAX_ADDRS in evdns so as to be quite large.Brad Smith
- Accept as well-formed DNS replies with questions but no answers. - Fix for crash in evdns_resolve_reverse_ipv6(). - Move end of "extern C {" block to the end of evdns.h. From the libevent SVN repo. ok millert@
2008-05-02Pass FORK_SHAREFILES flag in kthread_create; avoids allocating aBret Lambert
filedesc struct and associated fdcopy operation on kernel thread creation. Instead, kernel threads share and bump reference count on proc0's filedesc. ok thib@, "definitely makes sense" art@
2008-05-02Compare flags against the right flag field or else unexpected things mayClaudio Jeker
happen. The decision process failed to correctly mask looping pathes and in some szenarios even elected them as best route. *gulp* Found the hard way and fix tested by Christian, bsd (at) cleondra (dot) ch
2008-05-02Fix logic when setting the F_RIB_ELIGIBLE flag. A path with a NULL nexthopClaudio Jeker
is localy originated and so is eligible by definition. Noticed and fix tested by Christian, bsd (at) cleondra (dot) ch
2008-05-02plug potential mbuf leaks;Thordur I. Bjornsson
Parts from NetBSD; OK blambert@; tested by johan@, sthen@ and a few others.
2008-05-02Fix the label swithing and forwarding logic a bit. OK norby@Claudio Jeker
2008-05-02There is no need to endian convert the label after swapping it, all label opsClaudio Jeker
are done with network byte ordering now. OK norby@
2008-05-02Makefile: sort MLINKS and add event_base_once.3Jason McIntyre
event.3: fix NAME and remove spurious blank line
2008-05-02Make the SO_TIMESTAMP sockopt work. When set, this allows the user toChris Kuethe
get a timestamp of when the datagram was accepted (by udp(4), for example) rather than having to take a timestamp with gettimeofday(2) when recv(2) returns - possibly several hundreds of microseconds later. May be of use to those interested in precision network timing schemes or QoS for media applications. Tested on alpha, amd64, i386 and sparc64. manpage suggestions from jmc, ok deraadt
2008-05-02Remove debug prints.Dale Rahn
2008-05-02syncTheo de Raadt
2008-05-02Update to libevent 1.3e while retaining our local changes.Brad Smith
"No objection" millert@ "the diff looks and works fine" reyk@
2008-05-02do not always delay log initialization, when no configuration file isPierre-Yves Ritschard
present, which is the most common use of rtadvd, it would otherwise always print messages to the console though the situation is valid. this fixes a regression introduced with the new logging code. ok rainer@, todd@, fgsch@
2008-05-02syncTheo de Raadt
2008-05-01correct attach messagesTheo de Raadt
2008-05-01In the main loop, do not call wait() if there is no child process yet;Miod Vallat
misinterpreting the ``returned'' status could lead to segfauts, as reported by ``Filth'' (hygdrasil, gmail dot com) ok deraadt@
2008-05-01Be carefull not to read away the target entry when encounteringOtto Moerbeek
deleted files after a seekdir(); testcase produced by mbalmer@; fix with and ok mbalmer; ok millert@
2008-05-01.Xr memc(4)Xavier Santolaria
2008-05-01memc(4) bits. OK drahn@.Xavier Santolaria