| Commit message (Expand) | Author | Age | Files | Lines |
* | Gigacommit to improve device-driver source compatibility between | phk | 2003-03-03 | 1 | -13/+3 |
* | Remove unneeded code added in revision 1.188. | tegge | 2003-03-01 | 1 | -32/+9 |
* | Don't NULL out p_fd until after closefd() has been called. This isn't | scottl | 2003-02-24 | 1 | -4/+6 |
* | Remove a comment which hasn't been true since rev. 1.158 | mtm | 2003-02-22 | 1 | -1/+0 |
* | Back out M_* changes, per decision of the TRB. | imp | 2003-02-19 | 1 | -6/+6 |
* | Avoid file lock leakage when linuxthreads port or rfork is used: | tegge | 2003-02-15 | 1 | -15/+51 |
* | Do not allow kqueues to be passed via unix domain sockets. | alfred | 2003-02-15 | 1 | -1/+2 |
* | Fix LOR with PROC/filedesc. Introduce fdesc_mtx that will be used as a | alfred | 2003-02-15 | 1 | -1/+11 |
* | Don't lock FILEDESC under PROC. | alfred | 2003-02-11 | 1 | -2/+1 |
* | NODEVFS cleanup: remove #ifdefs | phk | 2003-01-30 | 1 | -9/+0 |
* | Add missing SMP file locks around read-modify-write operations on | hsu | 2003-01-21 | 1 | -1/+5 |
* | Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0. | alfred | 2003-01-21 | 1 | -6/+6 |
* | Originally when DEVFS was added, a global variable "devfs_present" | phk | 2003-01-19 | 1 | -5/+7 |
* | Bow to the whining masses and change a union back into void *. Retain | dillon | 2003-01-13 | 1 | -18/+16 |
* | Change struct file f_data to un_data, a union of the correct struct | dillon | 2003-01-12 | 1 | -11/+11 |
* | Correct file descriptor leaks in lseek and do_dup. | nectar | 2003-01-06 | 1 | -0/+1 |
* | fdcopy() only needs a filedesc pointer. | alfred | 2003-01-01 | 1 | -4/+5 |
* | purge 'register'. | alfred | 2003-01-01 | 1 | -31/+31 |
* | Since fdshare() and fdinit() only operate on filedescs, make them | alfred | 2003-01-01 | 1 | -10/+10 |
* | fdinit() does not need to lock the filedesc it is creating as no one | alfred | 2003-01-01 | 1 | -3/+0 |
* | Improve consistency between devfs and MAKEDEV: use UID_ROOT and | rwatson | 2002-12-27 | 1 | -5/+5 |
* | White-space changes. | phk | 2002-12-24 | 1 | -6/+6 |
* | Detediousficate declaration of fileops array members by introducing | phk | 2002-12-23 | 1 | -10/+7 |
* | Drop filedesc lock and acquire Giant around calls to malloc() and free(). | tjr | 2002-12-13 | 1 | -1/+18 |
* | If the file descriptors passed into do_dup() are negative, return EBADF | jhb | 2002-11-26 | 1 | -3/+4 |
* | Change the way support for asynchronous I/O is indicated to applications | wollman | 2002-10-27 | 1 | -0/+7 |
* | Don't lock the proc lock to clear p_fd. p_fd isn't protected by the proc | jhb | 2002-10-18 | 1 | -2/+0 |
* | Many style and whitespace fixes. | jhb | 2002-10-16 | 1 | -84/+83 |
* | Sort includes a bit. | jhb | 2002-10-16 | 1 | -3/+3 |
* | Argh. Put back setting of P_ADVLOCK for the F_WRLCK case that was | jhb | 2002-10-15 | 1 | -0/+3 |
* | Remove the leaderp variable and just access p_leader directly. The | jhb | 2002-10-15 | 1 | -12/+3 |
* | In an SMP environment post-Giant it is no longer safe to blindly | truckman | 2002-10-03 | 1 | -3/+8 |
* | fcntl(..., F_SETLKW, ...) takes a pointer to a struct flock just like | tmm | 2002-09-16 | 1 | -0/+1 |
* | Remove all use of vnode->v_tag, replacing with appropriate substitutes. | njl | 2002-09-14 | 1 | -8/+9 |
* | Fix fcntl(..., F_GETOWN, ...) and fcntl(..., F_SETOWN, ...) on sparc64 | tmm | 2002-09-13 | 1 | -3/+5 |
* | - Change falloc() to acquire an fd from the process table last so that | jhb | 2002-09-03 | 1 | -108/+102 |
* | Split fcntl() into a wrapper and a kernel-callable kern_fcntl() | iedowse | 2002-09-02 | 1 | -65/+83 |
* | Replace various spelling with FALLTHROUGH which is lint()able | charnier | 2002-08-25 | 1 | -1/+1 |
* | In continuation of early fileop credential changes, modify fo_ioctl() to | rwatson | 2002-08-17 | 1 | -7/+9 |
* | Make similar changes to fo_stat() and fo_poll() as made earlier to | rwatson | 2002-08-16 | 1 | -8/+10 |
* | In order to better support flexible and extensible access control, | rwatson | 2002-08-15 | 1 | -4/+5 |
* | Have the kern.file sysctl export xfiles rather than files. The truth is | des | 2002-07-31 | 1 | -25/+52 |
* | Wire the sysctl output buffer before grabbing any locks to prevent | truckman | 2002-07-28 | 1 | -0/+1 |
* | Preallocate a struct file as the first thing in falloc() before we lock | jhb | 2002-07-17 | 1 | -16/+5 |
* | More caddr_t removal, make fo_ioctl take a void * instead of a caddr_t. | alfred | 2002-06-29 | 1 | -19/+17 |
* | Back out my lats commit of locking down a socket, it conflicts with hsu's work. | tanimura | 2002-05-31 | 1 | -5/+2 |
* | Lock down a socket, milestone 1. | tanimura | 2002-05-20 | 1 | -2/+5 |
* | More s/file system/filesystem/g | trhodes | 2002-05-16 | 1 | -1/+1 |
* | Make funsetown() take a 'struct sigio **' so that the locking can | alfred | 2002-05-06 | 1 | -26/+45 |
* | As malloc(9) and free(9) are now Giant-free, remove the Giant lock | tanimura | 2002-05-03 | 1 | -4/+0 |