Age | Commit message (Expand) | Author |
2012-09-10 | Cleanup VFS mount string handling: | Joel Sing |
2012-09-10 | delete compat_o48_sys_getdirentries; ok guenther | Theo de Raadt |
2012-07-11 | Revert the blocked FIFO open fix, as there's either a race in the | Philip Guenthe |
2012-07-10 | Don't release a FILE that wan't allocated. Found by benno@ | Philip Guenthe |
2012-07-08 | Don't hold the fd-table lock across vn_open(), as opening a FIFO may block. | Philip Guenthe |
2012-05-21 | Cleanup O_CLOEXEC handling and make sure UF_EXCLOSE is set correctly | Matthew Dempsky |
2012-05-14 | Remove the "vn_open() returning ENXIO means dup+close" hook that | Philip Guenthe |
2012-04-22 | Add struct proc * argument to FRELE() and FILE_SET_MATURE() in | Philip Guenthe |
2012-03-19 | Add tracing and dumping of "pointer to struct" syscall arguments for | Philip Guenthe |
2011-11-06 | Negative offsets to pread/pwrite-family are only legal for character devices. | Philip Guenthe |
2011-11-05 | ttys can't seek, so make pread/pwrite/preadv/pwritev fail with ESPIPE | Philip Guenthe |
2011-07-25 | Make sure vfsp is not used uninitialized in the mount -o update case; | Miod Vallat |
2011-07-18 | Add support for UTIME_OMIT and UTIME_NOW to utimensat(2), add the | Matthew Dempsky |
2011-07-14 | Add support for AT_REMOVEDIR to unlinkat(2), and switch sys_rmdir() to | Matthew Dempsky |
2011-07-12 | Fix typo that caused fchownat(2) and fchmodat(2) to try to dereference | Matthew Dempsky |
2011-07-09 | Fix up previous diff: use COMPAT_O48 instead of COMPAT_48, add option | Matthew Dempsky |
2011-07-09 | More syscalls.master cleanup: | Matthew Dempsky |
2011-07-09 | Add support for the O_CLOEXEC and O_DIRECTORY flags introduced in | Matthew Dempsky |
2011-07-08 | Support sending struct info to kdump. So far for struct stat and | Otto Moerbeek |
2011-07-08 | Add support for the AT_EACCESS, AT_SYMLINK_NOFOLLOW, and | Matthew Dempsky |
2011-07-07 | Add new syscall entries to support the openat(2) family of functions | Matthew Dempsky |
2011-07-06 | Return the correct error for fchdir(not_file_or_dir) | Philip Guenthe |
2011-07-06 | VOP_GETATTR() can sleep when accessing a file over NFS, so use | Matthew Dempsky |
2011-07-05 | Don't worry about lseek(2)ing past the end of raw disk devices. The | Matthew Dempsky |
2010-10-28 | Change basep parameter of getdirentries() to be off_t *, not long * | Todd C. Miller |
2010-10-27 | The previous two commits cannot be right. If in fact offsets > 4GB are | Theo de Raadt |
2010-07-01 | Oops. Lost the < 0 check on file position I had in the circulated | Kenneth R Westerback |
2010-07-01 | Return EINVAL if the file position is greater than LONG_MAX, since | Kenneth R Westerback |
2010-06-29 | Remove the "if the string address faulted, see if it looks like an int" | Ted Unangst |
2010-06-29 | eliminate some very redundant SCARG usage. ok art | Ted Unangst |
2009-10-31 | Use suser when possible. Suggested by miod@. | Federico G. Schwindt |
2009-09-08 | copyout() the correct size in sys_fhstatfs(), broken since 1.138. | Miod Vallat |
2009-09-02 | check if we have access to the vnode before checking if we can write to | Federico G. Schwindt |
2009-07-09 | Remove the VREF() macro and replaces all instances with a call to verf(), | Thordur I. Bjornsson |
2009-06-04 | Put readv/writev changes back in, as they no longer hang ckuethe's ntpd. | Bret Lambert |
2009-06-03 | Revert readv/writev changes, as they trigger an apparent file descriptor | Bret Lambert |
2009-06-02 | dofile{read,write} are essentially identical to their iovec equivalents, | Bret Lambert |
2008-11-11 | make sure that any messing we do with a process's directories happens atomica... | Ted Unangst |
2008-11-01 | change vrele() to return an int. if it returns 0, it can gaurantee that | Theo de Raadt |
2008-10-31 | checkdirs() walks allproc and calls sleeping functions if directories have | Theo de Raadt |
2008-08-08 | remove an if notyet block from sys_fstatfs(), that will never be needed, | Thordur I. Bjornsson |
2008-07-28 | remove an #if noyet block that will never be needed. | Thordur I. Bjornsson |
2008-06-13 | Delete vfs_bufstats() leftovers and unbreak compile with -DDEBUG | Rainer Giedat |
2008-05-22 | Use LIST_FOREACH() instead of handrolling. | Thordur I. Bjornsson |
2008-01-22 | Fix a double VOP_UNLOCK() that was introduced into the error path | Todd C. Miller |
2007-11-28 | a few more places where getmicrotime is good enough. ok miod | Ted Unangst |
2007-09-07 | Use M_ZERO in a few more places to shave bytes from the kernel. | Artur Grabowski |
2007-08-30 | Fix lock ordering problems when updating mount points, in some | Thordur I. Bjornsson |
2007-08-06 | Fix error path in sys_fhopen() if VOP_ADVLOCK fails. Spotted by aaron@ | Todd C. Miller |
2007-06-14 | Forgotten hackton diff: bounds check for seek on special devices | Otto Moerbeek |