| Commit message (Expand) | Author | Age | Files | Lines |
* | KSE Milestone 2 | julian | 2001-09-12 | 1 | -176/+168 |
* | Giant pushdown syscalls in kern/uipc_syscalls.c. Affected calls: | dillon | 2001-08-31 | 1 | -67/+230 |
* | With Alfred's permission, remove vm_mtx in favor of a fine-grained approach | dillon | 2001-07-04 | 1 | -13/+4 |
* | Don't dereference a NULL pointer if we fail to get a sendfilebuf. | dwmalone | 2001-06-24 | 1 | -1/+2 |
* | Add vm locking to sendfile(2) and sf_buf_free(). | jhb | 2001-05-25 | 1 | -5/+13 |
* | Undo part of the tangle of having sys/lock.h and sys/mutex.h included in | markm | 2001-05-01 | 1 | -2/+5 |
* | Revert consequences of changes to mount.h, part 2. | grog | 2001-04-29 | 1 | -1/+0 |
* | Sendfile is documented to return 0 on success, however if when a | alfred | 2001-04-26 | 1 | -0/+7 |
* | Correct #includes to work with fixed sys/mount.h. | grog | 2001-04-23 | 1 | -0/+1 |
* | Fix is a similar race condition as existed in the mbuf code. When we go | bmilekic | 2001-03-08 | 1 | -6/+7 |
* | Make the wait for sendfile buffers interruptable. Stops one process | dwmalone | 2001-03-08 | 1 | -3/+24 |
* | Grab the process lock while calling psignal and before calling psignal. | jhb | 2001-03-07 | 1 | -1/+4 |
* | Return ECONNABORTED from accept if connection is closed while on the | jlemon | 2001-02-14 | 1 | -1/+14 |
* | Change and clean the mutex lock interface. | bmilekic | 2001-02-09 | 1 | -6/+6 |
* | Fix the <sys/queue.h> abuse. | phk | 2001-01-02 | 1 | -8/+7 |
* | Add an XXX about a <sys/queue.h> transgression which needs cleaned up. | phk | 2001-01-02 | 1 | -0/+1 |
* | * Rename M_WAIT mbuf subsystem flag to M_TRYWAIT. | bmilekic | 2000-12-21 | 1 | -3/+3 |
* | Convert more malloc+bzero to malloc+M_ZERO. | dwmalone | 2000-12-08 | 1 | -2/+2 |
* | Changed second argument in a call to sf_buf_free() to be NULL instead of | dg | 2000-12-03 | 1 | -1/+1 |
* | Make sure to free the sf_buf if we've allocated it but fail to allocate | bmilekic | 2000-12-02 | 1 | -0/+1 |
* | This patchset fixes a large number of file descriptor race conditions. | dillon | 2000-11-18 | 1 | -66/+151 |
* | Fixed a certain panic on IO error in sendfile(): Page must be set PG_BUSY | dg | 2000-11-12 | 1 | -1/+3 |
* | * Have m_pulldown() use the new M_WRITABLE() macro in order to determine | bmilekic | 2000-11-11 | 1 | -1/+2 |
* | Change the sf_bufs wakeups to be wakeup_one(), because we don't want to | bmilekic | 2000-11-04 | 1 | -4/+5 |
* | Setup and put to use the mutex lock for sf_freelist, the sendfile(2) bufs | bmilekic | 2000-11-04 | 1 | -9/+18 |
* | Add three new VOPs: VOP_CREATEVOBJECT, VOP_DESTROYVOBJECT and VOP_GETVOBJECT. | bp | 2000-09-12 | 1 | -2/+1 |
* | Replace the mbuf external reference counting code with something | dwmalone | 2000-08-19 | 1 | -43/+25 |
* | Modify ktrace's general I/O tracing, ktrgenio(), to use a struct uio * | green | 2000-07-02 | 1 | -6/+14 |
* | unstatic getfp() so that other subsystems can use it. | alfred | 2000-06-12 | 1 | -3/+2 |
* | Back out the previous change to the queue(3) interface. | jake | 2000-05-26 | 1 | -1/+1 |
* | Change the way that the queue(3) structures are declared; don't assume that | jake | 2000-05-23 | 1 | -1/+1 |
* | Introduce kqueue() and kevent(), a kernel event notification facility. | jlemon | 2000-04-16 | 1 | -0/+4 |
* | This is Bosko Milekic's mbuf allocation waiting code. Basically, this | green | 1999-12-12 | 1 | -0/+4 |
* | General clean-up of socket.h and associated sources to synchronise up | phk | 1999-11-24 | 1 | -1/+1 |
* | This is a partial commit of the patch from PR 14914: | phk | 1999-11-16 | 1 | -3/+3 |
* | useracc() the prequel: | phk | 1999-10-29 | 1 | -1/+0 |
* | Add a missing spl lowering. | green | 1999-10-14 | 1 | -0/+1 |
* | Trim unused options (or #ifdef for undoc options). | peter | 1999-10-11 | 1 | -2/+0 |
* | Plug a potential filedescriptor leak. This will probably almost | guido | 1999-09-30 | 1 | -1/+6 |
* | This is what was "fdfix2.patch," a fix for fd sharing. It's pretty | green | 1999-09-19 | 1 | -0/+4 |
* | $Id$ -> $FreeBSD$ | peter | 1999-08-28 | 1 | -1/+1 |
* | Fix fd race conditions (during shared fd table usage.) Badfileops is | green | 1999-08-04 | 1 | -14/+11 |
* | Fix warnings in preparation for adding -Wall -Wcast-qual to the | dillon | 1999-01-27 | 1 | -3/+3 |
* | Don't free the socket address if soaccept() / pru_accept() doesn't | fenner | 1999-01-25 | 1 | -2/+3 |
* | Addendum: The original code that the last commit 'fixed' actually did | dillon | 1999-01-24 | 1 | -1/+1 |
* | There was a situation where sendfile() might attempt to initiate I/O | dillon | 1999-01-24 | 1 | -32/+35 |
* | Fixed a potential bug ( but maybe not ), where sendfile() clears PG_BUSY | dillon | 1999-01-21 | 1 | -1/+1 |
* | This is a rather large commit that encompasses the new swapper, | dillon | 1999-01-21 | 1 | -16/+13 |
* | The "easy" fixes for compiling the kernel -Wunused: remove unreferenced static | archie | 1998-12-07 | 1 | -2/+2 |
* | Fixed broken code in sendfile(2) when using file offsets. | dg | 1998-12-03 | 1 | -5/+7 |