| Commit message (Expand) | Author | Age | Files | Lines |
* | Add support for displaying a process' current working directory, root | marcus | 2008-02-09 | 1 | -0/+50 |
* | Export a type for POSIX SHM file descriptors via kern.proc.filedesc as | rwatson | 2008-01-20 | 1 | -0/+4 |
* | VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used in | attilio | 2008-01-13 | 1 | -1/+1 |
* | vn_lock() is currently only used with the 'curthread' passed as argument. | attilio | 2008-01-10 | 1 | -2/+2 |
* | Add a new file descriptor type for IPC shared memory objects and use it to | jhb | 2008-01-08 | 1 | -0/+2 |
* | Make ftruncate a 'struct file' operation rather than a vnode operation. | jhb | 2008-01-07 | 1 | -0/+8 |
* | - In sysctl_kern_file skip fdps with negative lastfiles. This can | jeff | 2008-01-03 | 1 | -1/+2 |
* | Remove explicit locking of struct file. | jeff | 2007-12-30 | 1 | -105/+67 |
* | Add two new sysctls in support of the forthcoming procstat(1) to support | rwatson | 2007-12-02 | 1 | -1/+180 |
* | Remove the now-unused NET_{LOCK,UNLOCK,ASSERT}_GIANT() macros, which | rwatson | 2007-08-06 | 1 | -3/+0 |
* | - Use explicit locking in the various fcntl case statements so that we | jeff | 2007-07-03 | 1 | -64/+99 |
* | Rather than passing SUSER_RUID into priv_check_cred() to specify when | rwatson | 2007-06-16 | 1 | -1/+1 |
* | Revert UF_OPENING workaround for CURRENT. | kib | 2007-05-31 | 1 | -7/+3 |
* | Mark the filedescriptor table entries with VOP_OPEN being performed for them | kib | 2007-05-04 | 1 | -3/+7 |
* | Avoid a lot of code duplication by using kern_open() to open /dev/null | jhb | 2007-04-26 | 1 | -45/+9 |
* | Replace custom file descriptor array sleep lock constructed using a mutex | rwatson | 2007-04-04 | 1 | -170/+174 |
* | Just use 'fdrop()' instead of 'FILE_LOCK(); fdrop_locked()' in | jhb | 2007-03-15 | 1 | -10/+4 |
* | Further system call comment cleanup: | rwatson | 2007-03-05 | 1 | -3/+3 |
* | Remove 'MPSAFE' annotations from the comments above most system calls: all | rwatson | 2007-03-04 | 1 | -30/+0 |
* | Catch up file descriptor printing function in DDB to the addition of kqueues | rwatson | 2007-02-15 | 1 | -0/+4 |
* | Break file descriptor printing logic out of db_show_files() into | rwatson | 2007-02-15 | 1 | -9/+32 |
* | Use FOREACH_PROC_IN_SYSTEM instead of using its unrolled form. | delphij | 2007-01-17 | 1 | -3/+3 |
* | - Close a race between enumerating UNIX domain socket pcb structures via | jhb | 2007-01-05 | 1 | -0/+11 |
* | Sweep kernel replacing suser(9) calls with priv(9) calls, assigning | rwatson | 2006-11-06 | 1 | -1/+2 |
* | return EBADF instead of successfully attaching (and then panicing) when | jmg | 2006-09-24 | 1 | -1/+1 |
* | Add a comment to explain what fdclose() does and what it's purpose is | jhb | 2006-07-21 | 1 | -0/+8 |
* | Add a kern_close() so that the ABIs can close a file descriptor w/o having | jhb | 2006-07-08 | 1 | -2/+10 |
* | Compress direct cr_ruid comparsion and jailed() call to suser_cred(9). | pjd | 2006-06-27 | 1 | -2/+4 |
* | Mark fgetsock() and fputsock() as depcrecated: callers should rely on | rwatson | 2006-04-01 | 1 | -2/+8 |
* | Restore fd optimization with a few minor tweaks, to quote tegge: | csjp | 2006-03-20 | 1 | -2/+5 |
* | Back out fd optimization introduced in revision 1.280 as it appears to be | csjp | 2006-03-18 | 1 | -3/+1 |
* | Add auditing of arguments to the close() and fstat() system calls. Much more | wsalamon | 2006-02-05 | 1 | -0/+10 |
* | Return EBADF rather than EINVAL for FWRITE failure as per POSIX. | jhb | 2006-01-06 | 1 | -3/+2 |
* | Last step to make mq_notify conform to POSIX standard, If the process | davidxu | 2005-11-30 | 1 | -1/+10 |
* | Add the f_msgcount field to the set of struct file fields printed in show | rwatson | 2005-11-10 | 1 | -4/+5 |
* | Expanet of details printed for each file descriptor to include it's | rwatson | 2005-11-10 | 1 | -5/+5 |
* | Add a DDB "show files" command to list the current open file list, some | rwatson | 2005-11-10 | 1 | -0/+73 |
* | Fix typo in recent comment tweak. | rwatson | 2005-11-09 | 1 | -1/+1 |
* | In closef(), remove the assumption that there is a thread associated | rwatson | 2005-11-09 | 1 | -2/+6 |
* | Push down Giant into fdfree() and remove it from two of the callers. | jhb | 2005-11-01 | 1 | -10/+23 |
* | Normalize a significant number of kernel malloc type names: | rwatson | 2005-10-31 | 1 | -2/+2 |
* | Use FILEDESC_UNLOCK(fdp) after FILE_UNLOCK(p), not before to avoid LOR. | rik | 2005-10-04 | 1 | -1/+3 |
* | Two minor optimizations of fdalloc(): | des | 2005-08-26 | 1 | -1/+3 |
* | Fix fdcheckstd to pass the file descriptor along through vn_open. When | dd | 2005-06-25 | 1 | -1/+1 |
* | - Use NAMEI to pickup Giant if we need it in fpcheckstd(). | jeff | 2005-05-03 | 1 | -4/+5 |
* | Remove redundant initialization that is repeated in the for() loop | keramida | 2005-03-08 | 1 | -2/+0 |
* | Typo & grammar fixes in comments. | keramida | 2005-03-08 | 1 | -9/+9 |
* | Make some file/filedesc related functions static | phk | 2005-02-10 | 1 | -2/+4 |
* | - Tweak kern_msgctl() to return a copy of the requested message queue id | jhb | 2005-02-07 | 1 | -19/+17 |
* | Don't use VOP_GETVOBJECT, use vp->v_object directly. | phk | 2005-01-25 | 1 | -2/+1 |