summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-04-08Plug memory leak when nitems == 0.Ray Lai
From NetBSD from Coverity CID 1752. OK jaredy@
2006-04-08Plug simple memory leak. ``Don't forget to free tcpopts when youRay Lai
are done.'' From NetBSD from Coverity CID 2057. OK henning@ and jaredy@
2006-04-08Remove a little bit of dead code; minburst is set to 2 earlier, andRay Lai
cannot be 0. From NetBSD from Coverity CID 577. OK henning@
2006-04-08Since moritz@ says, ``this can't happen, because no fmt stringRay Lai
passed to fdata() uses a T-value not caught by the switch,'' change to a fatal error. OK jaredy@ and moritz@
2006-04-08Memory leak on fork error plus change time variable to preventRay Lai
shadowing time(3) function. From NetBSD from Coverity CID 1688. OK jaredy@ and moritz@
2006-04-07Improved MIDI manpages from Alexandre Ratchov.Jonathan Gray
2006-04-07Add optional flush method to MIDI hardware interface.Jonathan Gray
Allow umidi(4) to send multiple events in a single USB transfer. This greatly improves the number of interrupts umidi is able to generate. From Alexandre Ratchov.
2006-04-07Replace bus_space functions with generic ones that do barriers.Marco Peereboom
2006-04-07Add memory allocator functions.Marco Peereboom
2006-04-07Print state in debug. Change return vales to 1 instead of ENXIO.Marco Peereboom
2006-04-07Use new shiny debug code.Marco Peereboom
2006-04-07Make a better debug mechanism.Marco Peereboom
2006-04-07Enable mfi_transition_fw() original code from FreeBSD.Marco Peereboom
2006-04-07Add DEVNAME.Marco Peereboom
2006-04-07Add register offsets. Borrowed from FreeBSD.Marco Peereboom
2006-04-07change rcs_set_mtime() return type to void.Xavier Santolaria
2006-04-07Add work around for mbuf leak in the tx path until weJonathan Gray
can come up with a better guess as to how the hardware works. From Chuck Silvers. ok damien@
2006-04-07fsck needs to unset FS_FLAGS_UPDATED if it changes the super blockPedro Martelletto
2006-04-07Add and use ffs_validate(), a function for sanity checking super blocksPedro Martelletto
2006-04-07Add default case to prevent uninitialized variable usage, althoughRay Lai
moritz@ says ``this can't happen, because no fmt string passed to fdata() uses a T-value not caught by the switch.'' From NetBSD from Coverity CID 2491. OK otto@ and moritz@
2006-04-07Stylistic changes initially from Thordur I. Bjornsson, more cleanupRay Lai
and delinting from me. OK otto@ and jaredy@
2006-04-07Don't check for a BAR address past PCI_MAPREG_END; some devicesBrad Smith
have BARs way out in left field. From NetBSD
2006-04-07implement a check whether a BAR is present at all at a givenBrad Smith
configuration space address, pci_mapreg_probe(). From NetBSD ok dlg@
2006-04-06Add fw transition logic.Marco Peereboom
2006-04-06Add structures and defines.Marco Peereboom
Losely based on FreeBSD and Linux code.
2006-04-06allow lists inside lists for address specs, has been in my tree forHenning Brauer
quite some time... theo likes
2006-04-06release kernel lock _after_ the emulation exit hook is called to protect ↵Michael Shalayeff
possible free()s; tedu@ deraadt@ ok
2006-04-06if "/etc/rc shutdown" exits 2, attempt powerdown. it does so ifHenning 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-06Fix a process datasize leak with MAP_FIXED. When zapping old mappingsKurt 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-06enable mmap_fixed regressKurt Miller
2006-04-06add a regress that repetitively calls mmap with MMAP_FIXED on the sameKurt Miller
region of memory to ensure process datasize is properly calculated. this time in the righ place *sigh* ok pedro@
2006-04-06Hook up mfi, remains disabled.Marco Peereboom
2006-04-06Add skeleton driver for MegaRAID SAS.Marco Peereboom
2006-04-06Sync.Marco Peereboom
2006-04-06Add MegaRAID SAS devicesMarco Peereboom
2006-04-06cvs_buf_copy() and cvs_buf_peek() are not used by usr.bin/rcs; OK niallo@.Xavier Santolaria
2006-04-06Adjust tbrsize to new default MTU on tun(4).Marco Pfatschbacher
OK claudio, henning, mcbride
2006-04-06lexicographical order, not lexigraphical order; why people don'tJason 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 toKurt 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-06Add missing break. Now bgpctl show rib det source-as 8271 shows all announcedClaudio Jeker
prefixes not only the first one.
2006-04-06Document show rib detail and friends. Some input by jmc@ getting dust in oneClaudio Jeker
of my trees since a few weeks.
2006-04-06rcsnum_setsize() will never return non-zero; change its return type to void.Xavier Santolaria
2006-04-06the synchronise cache path is unique in ami in that it uses two megaraidDavid 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-06small knf;Xavier Santolaria
2006-04-06Add limited support for -CC option. In particular, this does not workMarc Espie
with cpp -traditional, but it should be enough for lint. okay miod@
2006-04-06Fix a bug whereby a written buffer (^X^W) would not have the correctKjell Wooding
trailing buffer number appended (e.g. "file<2>") in case an existing buffer shared its basename().
2006-04-06kudos to djm for finding an embarrassing bug. using the same variableDavid Gwynne
as a counter for both an inner and outer loop is not good(tm). ok marco@
2006-04-05resolve conflictsJakob Schlyter
2006-04-05regen using autoconf 2.59Jakob Schlyter