summaryrefslogtreecommitdiff
path: root/sys/kern/kern_descrip.c
Commit message (Expand)AuthorAgeFilesLines
* MFC: Add a new 'void closefrom(int lowfd)' system call. When called, itJohn Baldwin2009-07-141-0/+36
* MFC r192094:Konstantin Belousov2009-06-041-2/+15
* MFC: Update comment above _fget() now that FWRITE failures return EBADF.John Baldwin2009-05-151-4/+2
* Merge r188485 from head to stable/7:Robert Watson2009-02-251-1/+2
* MFC: Remove unnecessary locking around vn_fullpath(). This also includesJohn Baldwin2009-02-171-6/+4
* MFC: Use shared vnode locks instead of exclusive vnode locks for theJohn Baldwin2009-02-171-1/+1
* MFC: Rework the lifetime management of the kernel implementation of POSIXJohn Baldwin2009-02-171-0/+6
* MFC r186601:Konstantin Belousov2009-01-291-6/+8
* MFC: 185548 and followups.Peter Wemm2008-12-061-4/+248
* Merge r183803 from head to stable/7:Robert Watson2008-10-211-2/+2
* MFC r179175:Konstantin Belousov2008-08-191-0/+7
* MFH r176471 (KTR_STRUCT, support for struct stat and struct sockaddr)Dag-Erling Smørgrav2008-08-121-0/+8
* Merge r177253, r177255 from head to stable/7:Robert Watson2008-07-221-2/+2
* MFC 1.330, 1.331:Kris Kennaway2008-05-161-0/+2
* MFC to RELENG_7:Antoine Brodin2008-04-201-1/+6
* Merge kern_descrip.c:1.322, user.h:1.74, procstat_files.c:1.5:Robert Watson2008-04-111-0/+50
* Merge kern_descrip.c:1.314, kern_proc.c:1.256, sysctl.h:1.153,Robert Watson2008-04-101-1/+180
* MFC: Kernel mode Network Lock Manager.Doug Rabson2008-04-101-7/+66
* Fix sendfile(2) write-only file permission bypass.Simon L. B. Nielsen2008-02-141-1/+1
* Remove the now-unused NET_{LOCK,UNLOCK,ASSERT}_GIANT() macros, whichRobert Watson2007-08-061-3/+0
* - Use explicit locking in the various fcntl case statements so that weJeff Roberson2007-07-031-64/+99
* Rather than passing SUSER_RUID into priv_check_cred() to specify whenRobert Watson2007-06-161-1/+1
* Revert UF_OPENING workaround for CURRENT.Konstantin Belousov2007-05-311-7/+3
* Mark the filedescriptor table entries with VOP_OPEN being performed for themKonstantin Belousov2007-05-041-3/+7
* Avoid a lot of code duplication by using kern_open() to open /dev/nullJohn Baldwin2007-04-261-45/+9
* Replace custom file descriptor array sleep lock constructed using a mutexRobert Watson2007-04-041-170/+174
* Just use 'fdrop()' instead of 'FILE_LOCK(); fdrop_locked()' inJohn Baldwin2007-03-151-10/+4
* Further system call comment cleanup:Robert Watson2007-03-051-3/+3
* Remove 'MPSAFE' annotations from the comments above most system calls: allRobert Watson2007-03-041-30/+0
* Catch up file descriptor printing function in DDB to the addition of kqueuesRobert Watson2007-02-151-0/+4
* Break file descriptor printing logic out of db_show_files() intoRobert Watson2007-02-151-9/+32
* Use FOREACH_PROC_IN_SYSTEM instead of using its unrolled form.Xin LI2007-01-171-3/+3
* - Close a race between enumerating UNIX domain socket pcb structures viaJohn Baldwin2007-01-051-0/+11
* Sweep kernel replacing suser(9) calls with priv(9) calls, assigningRobert Watson2006-11-061-1/+2
* return EBADF instead of successfully attaching (and then panicing) whenJohn-Mark Gurney2006-09-241-1/+1
* Add a comment to explain what fdclose() does and what it's purpose isJohn Baldwin2006-07-211-0/+8
* Add a kern_close() so that the ABIs can close a file descriptor w/o havingJohn Baldwin2006-07-081-2/+10
* Compress direct cr_ruid comparsion and jailed() call to suser_cred(9).Pawel Jakub Dawidek2006-06-271-2/+4
* Mark fgetsock() and fputsock() as depcrecated: callers should rely onRobert Watson2006-04-011-2/+8
* Restore fd optimization with a few minor tweaks, to quote tegge:Christian S.J. Peron2006-03-201-2/+5
* Back out fd optimization introduced in revision 1.280 as it appears to beChristian S.J. Peron2006-03-181-3/+1
* Add auditing of arguments to the close() and fstat() system calls. Much moreWayne Salamon2006-02-051-0/+10
* Return EBADF rather than EINVAL for FWRITE failure as per POSIX.John Baldwin2006-01-061-3/+2
* Last step to make mq_notify conform to POSIX standard, If the processDavid Xu2005-11-301-1/+10
* Add the f_msgcount field to the set of struct file fields printed in showRobert Watson2005-11-101-4/+5
* Expanet of details printed for each file descriptor to include it'sRobert Watson2005-11-101-5/+5
* Add a DDB "show files" command to list the current open file list, someRobert Watson2005-11-101-0/+73
* Fix typo in recent comment tweak.Robert Watson2005-11-091-1/+1
* In closef(), remove the assumption that there is a thread associatedRobert Watson2005-11-091-2/+6
* Push down Giant into fdfree() and remove it from two of the callers.John Baldwin2005-11-011-10/+23