Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-06 | allow lists inside lists for address specs, has been in my tree for | Henning Brauer | |
quite some time... theo likes | |||
2006-04-06 | release kernel lock _after_ the emulation exit hook is called to protect ↵ | Michael Shalayeff | |
possible free()s; tedu@ deraadt@ ok | |||
2006-04-06 | if "/etc/rc shutdown" exits 2, attempt powerdown. it does so if | Henning Brauer | |
rc.shutdown sets powerdown to YES. From: Michele 'mydecay' Marchetto <mydecay@openbeer.it> but didn't apply, so I redid & added comment to clarify ok mickey theo | |||
2006-04-06 | Fix a process datasize leak with MAP_FIXED. When zapping old mappings | Kurt Miller | |
call uvm_unmap_p instead of uvm_unmap so that it has the process information and can adjust vm_dused. okay pedro@ tedu@ | |||
2006-04-06 | enable mmap_fixed regress | Kurt Miller | |
2006-04-06 | add a regress that repetitively calls mmap with MMAP_FIXED on the same | Kurt Miller | |
region of memory to ensure process datasize is properly calculated. this time in the righ place *sigh* ok pedro@ | |||
2006-04-06 | Hook up mfi, remains disabled. | Marco Peereboom | |
2006-04-06 | Add skeleton driver for MegaRAID SAS. | Marco Peereboom | |
2006-04-06 | Sync. | Marco Peereboom | |
2006-04-06 | Add MegaRAID SAS devices | Marco Peereboom | |
2006-04-06 | cvs_buf_copy() and cvs_buf_peek() are not used by usr.bin/rcs; OK niallo@. | Xavier Santolaria | |
2006-04-06 | Adjust tbrsize to new default MTU on tun(4). | Marco Pfatschbacher | |
OK claudio, henning, mcbride | |||
2006-04-06 | lexicographical order, not lexigraphical order; why people don't | Jason McIntyre | |
just use "alphabetical" is beyond me... from igor sobrado (pr #5070); | |||
2006-04-06 | - due to the fninit() in _thread_machdep_save_float_state() all calls to | Kurt Miller | |
it need to be matched with a call to _thread_machdep_restore_float_state(), so add missing one in _thread_machdep_init(). - 16-byte align fp frame - call fwait() before save and and after restoring fp state. lots of guidance and ok mickey@ | |||
2006-04-06 | Add missing break. Now bgpctl show rib det source-as 8271 shows all announced | Claudio Jeker | |
prefixes not only the first one. | |||
2006-04-06 | Document show rib detail and friends. Some input by jmc@ getting dust in one | Claudio Jeker | |
of my trees since a few weeks. | |||
2006-04-06 | rcsnum_setsize() will never return non-zero; change its return type to void. | Xavier Santolaria | |
2006-04-06 | the synchronise cache path is unique in ami in that it uses two megaraid | David Gwynne | |
commands to emulated one scsi command. i reuse the ccb and pushed it along the scsi setup path twice. when we do this for asynchronous cache syncs this happens with the timeout: timeout_set, timeout_add, timeout_set, timeout_del. from the looks of the timeout code the repeat of the timeout_set/add part can do really interesting things with the linked list holding all the timeouts. this adds a timeout_del in the middle of the two set/adds so the lists are kept sane. | |||
2006-04-06 | -z can take no argument. | Xavier Santolaria | |
2006-04-06 | small knf; | Xavier Santolaria | |
2006-04-06 | Add limited support for -CC option. In particular, this does not work | Marc Espie | |
with cpp -traditional, but it should be enough for lint. okay miod@ | |||
2006-04-06 | Fix a bug whereby a written buffer (^X^W) would not have the correct | Kjell Wooding | |
trailing buffer number appended (e.g. "file<2>") in case an existing buffer shared its basename(). | |||
2006-04-06 | kudos to djm for finding an embarrassing bug. using the same variable | David Gwynne | |
as a counter for both an inner and outer loop is not good(tm). ok marco@ | |||
2006-04-05 | resolve conflicts | Jakob Schlyter | |
2006-04-05 | regen using autoconf 2.59 | Jakob Schlyter | |
2006-04-05 | resolve conflicts | Jakob Schlyter | |
2006-04-05 | ISC BIND release 9.3.2 | Jakob Schlyter | |
2006-04-05 | enable tqphy(4) here too | Martin Reindl | |
2006-04-05 | Enable an(4) on BE archs now that it works. | Kurt Miller | |
2006-04-05 | Add support for big endian archs. tested by jaredy@ and ok jsg@ | Kurt Miller | |
2006-04-05 | reintroduce ami_complete, a replacement for ami_poll that is built on top | David Gwynne | |
of the async exec and done commands. ami_poll uses a special command id that isnt needed for normal commands. on top of this we should drain the runq before using ami_poll. using ami_complete means that we can poll with commands still on the card. | |||
2006-04-05 | remote_bgpid is stored in host byte order so a htonl() is needed when putting | Claudio Jeker | |
the value on the wire. This solves the backward originator-ids seend by Tony Sarendal. OK henning@ | |||
2006-04-05 | Teach ffs_update() how to update FFS2 inodes | Pedro Martelletto | |
2006-04-05 | Make ffs_truncate() compatible with FFS2, from FreeBSD | Pedro Martelletto | |
2006-04-05 | Reap childs asynchronously in the signal handler. | Alexander Yurchenko | |
Diff from Alexey Vatchenko <avv@mail.zp.ua>. | |||
2006-04-05 | ARGSUSED for signal handler to please lint. | Alexander Yurchenko | |
2006-04-05 | RT2571 mention that should have been RT2570. | Jonathan Gray | |
Noticed by pedro at am-gen.org | |||
2006-04-05 | add a power hook for bge(4). | Brad Smith | |
From Thordur I. Bjornsson <thib at mi dot is> | |||
2006-04-05 | Use variable names for sizeof, remove casts in front of xmalloc, | Ray Lai | |
use xcalloc and xstrdup where appropriate, and other stuff. OK joris@ | |||
2006-04-04 | PowerBook3,3 has tumbler | Martin Reindl | |
2006-04-04 | enable tqphy(4), found on xl(4) | Martin Reindl | |
2006-04-04 | Add a `prefetch threshold' member to the bus_dma_tag_t, so that | Brad Smith | |
eventually we can determine whether or not to allocate a spill page on a per-mapping basis. From NetBSD ok martin@ | |||
2006-04-04 | clean up after Theo's "support mbuf handling in alpha sgmap dma maps" commit. | Brad Smith | |
ok martin@ | |||
2006-04-04 | Revert r1.58, I was on drugs - the array we are locking is one byte per | Miod Vallat | |
page, so the arithmetic was ok. Spotted by david@ | |||
2006-04-04 | POSIX says tdelete() returns the parent of the deleted node. Sadly the | Otto Moerbeek | |
root node doesn't have a parent, and POSIX does not say what should be done in that case. Warn developers that different implementations may do different things. | |||
2006-04-04 | Remove unused variable, spotted by otto@ | Pedro Martelletto | |
2006-04-04 | dead code removal | Henning Brauer | |
2006-04-04 | document set nexthop self, and improve that section whil eon it, claudio ok | Henning Brauer | |
2006-04-04 | add "set nexthop self", force nexthop to be set to own address even with IBGP | Henning Brauer | |
requested & tested Falk Brockerhoff <fb@smartterra.de>, and tony sarendal tested this too. claudio ok | |||
2006-04-04 | Add input routines to the i2s layer to support future Zaurus audio input. | Christopher Pascoe | |
ok robert@ |