Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-05-06 | another omron usb that must be ugen; vladas.urbonas@gmail | Theo de Raadt | |
2008-05-06 | allow setting of TCP send/receive buffer sizes; ok markus@ | Damien Miller | |
2008-05-06 | Document new state creation counter for pfctl -s labels | Marco Pfatschbacher | |
2008-05-06 | Add code to specify the mpls label switching operation. OK norby@ | Claudio Jeker | |
2008-05-06 | Add a counter to record how many states have been created by a rule. | Marco Pfatschbacher | |
It shows up in pfctl verbose mode and in the 7th field of the labels output. Also remove the label printing for scrub rules, as they do not support labels. OK dhartmei@ (on an earlier version), henning@, mcbride@ | |||
2008-05-06 | Labels in the sockaddr are stored like on the wire so shift and byte swap | Claudio Jeker | |
them. This makes route lookups work again. OK norby@ | |||
2008-05-06 | regen | Claudio Jeker | |
2008-05-06 | Add pop, push and swap options used by MPLS. OK norby@ | Claudio Jeker | |
2008-05-06 | Minor cleanup. OK norby@ | Claudio Jeker | |
2008-05-06 | Prevent possible overflow of int variable on large memory machines. | Tobias Weingartner | |
ok kettenis@ | |||
2008-05-06 | fix debug output. | Esben Norby | |
ok claudio@ | |||
2008-05-06 | Rather than clearing particularly dangerous flags when found, just | Kenneth R Westerback | |
zero all flags when we pool_put mbufs. ok claudio@ henning@ | |||
2008-05-06 | sync | Theo de Raadt | |
2008-05-06 | rename file; Paul de Weerd | Theo de Raadt | |
2008-05-05 | Correct defines for NXE_DB_PEGID_RX|TX. OK dlg@ | Claudio Jeker | |
2008-05-05 | We will never use __BUS_SPACE_HAS_STREAM_METHODS so remove all the code | Claudio Jeker | |
behind it. OK miod@, drahn@ | |||
2008-05-05 | dell drac 3 and 4 virtual uarts are pucs running very fast. | David Gwynne | |
2008-05-05 | add missing header for getpagesize | Charles Longeau | |
ok espie@ | |||
2008-05-05 | Document signal sensor. | Marc Balmer | |
2008-05-05 | Make nmea(4) behave like the other timedelta sensors and provide a | Marc Balmer | |
signal sensor that reflects the status of the receiver. tested by and ok ckuethe | |||
2008-05-05 | enforce make -j1 in SDBM_File, there is a nasty race that's hard to fix. | Marc Espie | |
okay millert@ | |||
2008-05-05 | retire ltsleep(); The only refrence left too it is in an | Thordur I. Bjornsson | |
ifdef netbsd block in drm code, but oga@ says he'll remove it soon... OK art@, oga@; | |||
2008-05-05 | clean up after reyk (tab at EOL) | Henning Brauer | |
2008-05-05 | don't install a /128 bit net route for 'proxy' ndp entries | Markus Friedl | |
and show them with ndp -a, too. from KAME rev 1.121; ok henning | |||
2008-05-05 | add lldp type | David Gwynne | |
2008-05-05 | in rt_gettable, we unfortunately have to check for rt_tables[id] != NULL | Henning Brauer | |
before returning rt_tables[id][af2rtafidx[af]. when you created tables and left a hole (0 and 2 exist, 1 does not) it is possible to hit that case. issue found & ok claudio | |||
2008-05-05 | remove a useless refcnt in pf_state_key. | Henning Brauer | |
when it is in fact only used to delete the state key when the number of attached states (in a tailq) drops to zero, we can as well test for the queue beeing empty. this is a leftover from some early version that did things differently. ok ryan | |||
2008-05-05 | Use rtm_hdrlen instead of the static header length. OK norby@ | Claudio Jeker | |
2008-05-05 | Put relay sockets in non blocking mode too. This got forgotten along the | Pierre-Yves Ritschard | |
way and didn't show since our read buffers are small. ``put it in'' reyk@ | |||
2008-05-05 | Don't set the adaptor template link's flags and quirks when trying to | Kenneth 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-05 | Make umsm only claim a single interface so it doesn't match | Jonathan Gray | |
on umass interfaces, and add Huawei E220. From rivo nurges <rix@estpak.ee>. And add another device while here. | |||
2008-05-05 | regen | Jonathan Gray | |
2008-05-05 | Another msm. | Jonathan Gray | |
Reported on misc@ by Denis Doroshenko <denis.doroshenko@gmail.com> | |||
2008-05-05 | sync | Theo de Raadt | |
2008-05-05 | Constantly fill in the program header pointer and count in elf_object_t | Kurt Miller | |
for all objects which simplifies phdr usage in a few places. "go for it" drahn@ | |||
2008-05-04 | Add ping6 and rtsol. | Brad Smith | |
ok miod@ | |||
2008-05-04 | convert to ptoa/atop | Martin Reindl | |
tested by maja@ | |||
2008-05-04 | Some additional tests. | Brad Smith | |
From the libevent SVN repo. ok millert@ | |||
2008-05-04 | macobio(4): add openpic(4) | Jason McIntyre | |
openpic(4): tweak previous | |||
2008-05-04 | Manage interrupts based on priority better, still working on this... | Dale Rahn | |
2008-05-04 | Update to sendmail-8.14.3 | Todd C. Miller | |
2008-05-04 | openpic(4) bits. OK drahn@. | Xavier Santolaria | |
2008-05-04 | Unpopulated CRIME memory banks (or logically empty due to CRIME merging | Miod 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-04 | convert arm and mips64 platforms to ptoa/atop | Martin Reindl | |
tested by maja@ | |||
2008-05-03 | Rework the interrupt calculation masks, a bit easier to follow (not so wrong). | Dale Rahn | |
2008-05-03 | add stmp-dirs to dependancy list, fixes a make -j issue seen on macppc | Dale Rahn | |
"looks okay" espie@ | |||
2008-05-03 | catch up with curpriority changes and convert to ptoa/atop | Martin Reindl | |
ok miod@ | |||
2008-05-03 | add missing header for close | Charles Longeau | |
ok otto@ espie@ millert@ | |||
2008-05-03 | Do not acquire the kernel lock for SY_NOLOCK system calls; ok drahn@ kettenis@ | Miod Vallat | |
2008-05-03 | mpcpcibr(4) bits. OK drahn@. | Xavier Santolaria | |