summaryrefslogtreecommitdiff
path: root/sys/kern
AgeCommit message (Expand)Author
2007-12-09big patch to simplify pool code.Ted Unangst
2007-11-30Fix msleep.Owain Ainsworth
2007-11-28Add msleep. This is identical to tsleep but it takes a mutex as aOwain Ainsworth
2007-11-28g/c mfs_mountroot() and mfs_initminiroot(). We don't support root onTodd C. Miller
2007-11-28a few more places where getmicrotime is good enough. ok miodTed Unangst
2007-11-28When updating the timestamps on pipes, use getnanotime() instead of moreMiod Vallat
2007-11-28remove the DIRECTOK flag. the caller semantics were too weird, and it's aTed Unangst
2007-11-28syncTheo de Raadt
2007-11-28COMPAT_09 uname is only used by freebsd compat, so move it to the right placeTheo de Raadt
2007-11-27regenArtur Grabowski
2007-11-27Mark getpid as NOLOCK just for testing.Artur Grabowski
2007-11-27Add possibility to add flags to syscalls in syscalls.master to markArtur Grabowski
2007-11-27make the deceptively complicated leading and trailing space into functions.Ted Unangst
2007-11-27typos; ok jmc@Martynas Venckus
2007-11-27Only checksum the NMEA sentence if it as GPRMC message.Marc Balmer
2007-11-26Degrade the timedelta if the GPS reports a warning condition for more thanMarc Balmer
2007-11-26Move the implementation of __mp_lock (biglock) into machine dependentArtur Grabowski
2007-11-26Remove some dead code that is confusing my greps.Artur Grabowski
2007-11-25convert crypto thread to workq. add WQ_DIRECTOK flag to workq.Ted Unangst
2007-11-23Since the devices that we detach may have children we cannot rely on theMark Kettenis
2007-11-19Don't overwrite a core file owned by a different user. Makes the codeTodd C. Miller
2007-11-16er, the newline is wrong. dissapointing.Theo de Raadt
2007-11-15newline before syncing disks is way prettierTheo de Raadt
2007-11-09Make disklabel aware of NTFS.Joel Sing
2007-11-03Fix LKM support for amd64.Mike Belopuhov
2007-10-29For fd passing, at externalize time we are dealing with int[] not pointer[],Theo de Raadt
2007-10-29MALLOC/FREE -> malloc/freeCharles Longeau
2007-10-29get rid of the unused cond_predicate_t typedef.David Gwynne
2007-10-21This QUEUE_DEBUG should really be DIAGNOSTIC - we need these checksBob Beck
2007-10-18Correct possible spl problem in buffer cleaning daemon - the buffer cleaningBob Beck
2007-10-16more remove unneeded declarations that shadows existing vars; ok by many.Federico G. Schwindt
2007-10-14remove tests for EIDRM and ENOMSG existence now that they're in the tree.Federico G. Schwindt
2007-10-11sched_lock_idle and sched_unlock_idle are obsolete now.Artur Grabowski
2007-10-10Make context switching much more MI:Artur Grabowski
2007-10-08Introduce %z for printf(9), like %z for printf(3). Used to printRay Lai
2007-09-26provide m_inithdr(), which takes an mbuf and gives an initialized M_PKTHDRHenning Brauer
2007-09-19instead of relying on mbuf.h to include pool.h and declareBret Lambert
2007-09-15Allow to pull out an usb stick with ffs filesystem while mountedAlexander Bluhm
2007-09-15replace ctob and btoc with ptoa and atop respectivelyMartin Reindl
2007-09-10Introduce a md pmap hook, pmap_remove_holes(), which is supposed to markMiod Vallat
2007-09-08Sync description of lookup() a bit more to reality.Hans-Joerg Hoexer
2007-09-07Use M_ZERO in a few more places to shave bytes from the kernel.Artur Grabowski
2007-09-07Add the long requested M_ZERO flag to malloc(9).Artur Grabowski
2007-09-03unsupported ioctl's should be returned with ENOTTYThordur I. Bjornsson
2007-09-01replace the machine dependant bytes-to-clicks macro by the MI ptoa()Martin Reindl
2007-09-01Remove support for ddb-only %r, %z, and the ddb-specific handling of %n fromMiod Vallat
2007-08-30Fix lock ordering problems when updating mount points, in someThordur I. Bjornsson
2007-08-16I don't really know what I was thinking when I wrote this. Not only does theArtur Grabowski
2007-08-09be more consistent in memcpy usage; no md5 change in .o; ok deraadt@Constantine A. Murenin
2007-08-07Correctly deal with EOF on pipe wrt kqueue. Based on a fix presentTodd C. Miller