aboutsummaryrefslogtreecommitdiff
path: root/sys/compat/linux/linux_file.c
Commit message (Expand)AuthorAgeFilesLines
* Merge r263233 from HEAD to stable/10:Robert Watson2015-03-191-1/+1
* Change the cap_rights_t type from uint64_t to a structure that we can extendPawel Jakub Dawidek2013-09-051-4/+13
* Rename do_pipe() to kern_pipe2() and declare it properly.Jilles Tjoelker2013-03-311-5/+2
* Remove check for NULL prior to free(9) and m_freem(9).Eitan Adler2013-03-041-2/+1
* Merge Capsicum overhaul:Pawel Jakub Dawidek2013-03-021-4/+5
* Reduce duplication between i386/linux/linux.h and amd64/linux32/linux.hJohn Baldwin2013-01-291-0/+1
* Remove the support for using non-mpsafe filesystem modules.Konstantin Belousov2012-10-221-4/+1
* Remove redundant checkKevin Lo2012-09-121-5/+0
* Extend the KPI to lock and unlock f_offset member of struct file. ItKonstantin Belousov2012-07-021-2/+3
* - Implement pipe2 syscall for Linuxulator. This syscall appeared in 2.6.27Jung-uk Kim2012-04-161-0/+49
* Convert files to UTF-8Ulrich Spörlein2012-01-151-1/+1
* Implement linux_fadvise64() and linux_fadvise64_64() usingJohn Baldwin2011-12-291-0/+45
* Make the Linux *at() calls a bit more complete.Ed Schouten2011-11-191-14/+14
* Improve *access*() parameter name consistency.Ed Schouten2011-11-191-6/+6
* In order to maximize the re-usability of kernel code in user space thisKip Macy2011-09-161-7/+7
* Second-to-last commit implementing Capsicum capabilities in the FreeBSDRobert Watson2011-08-111-4/+5
* In linuxolator getdents_common(), it seems there is no reason to loopKonstantin Belousov2011-01-191-3/+4
* Actually make O_DIRECTORY work.Ed Schouten2010-03-211-6/+2
* Background:Kirk McKusick2010-01-111-1/+1
* Move "options MAC" from opt_mac.h to opt_global.h, as it's now in GENERICRobert Watson2009-06-051-1/+0
* Add stuff to support upcoming BMC/IPMI flashing of newer Dell machineDoug Ambrisko2009-03-261-0/+9
* Use shared vnode locks when invoking VOP_READDIR().John Baldwin2009-02-131-1/+1
* Fix an edge-case of the linux readdir: We need the size of a linux direntAlexander Leidinger2009-02-131-1/+1
* Getdents requires padding with 2 bytes instead of 1 byteRoman Divacky2008-09-091-33/+54
* d_ino member of linux_dirent structure should be unsigned long.Roman Divacky2008-06-081-2/+2
* Implement linux_truncate64() syscall.Roman Divacky2008-04-231-0/+18
* Remove using magic value of -1 to distinguish between linux_open()Roman Divacky2008-04-091-5/+3
* Implement the linux syscallsKonstantin Belousov2008-04-081-112/+246
* Add the new kernel-mode NFS Lock Manager. To use it instead of theDoug Rabson2008-03-261-0/+2
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-131-1/+1
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-101-1/+1
* Plug the leaks in the present (hopefully, soon to be replaced)Konstantin Belousov2007-12-291-12/+19
* Merge first in a series of TrustedBSD MAC Framework KPI changesRobert Watson2007-10-241-1/+1
* Don't add the 'pad' argument to the mmap/truncate/etc syscalls.Peter Wemm2007-07-041-1/+0
* Ensure that newpath is always initialized, even for the error case.Matt Jacob2007-06-101-0/+2
* Replace custom file descriptor array sleep lock constructed using a mutexRobert Watson2007-04-041-4/+17
* Implement the openat() linux syscallJulian Elischer2007-03-291-31/+137
* Add support for LINUX_O_DIRECT, LINUX_O_DIRECT and LINUX_O_NOFOLLOW flagsKonstantin Belousov2007-01-181-17/+46
* Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.hRobert Watson2006-10-221-1/+2
* MFp4:Alexander Leidinger2006-09-231-1/+23
* The Linux unlink syscall uses a different errno value when trying to unlinkAlexander Leidinger2006-09-101-0/+7
* - Add conditional VFS Giant locking to getdents_common() (linux ABIs),John Baldwin2006-07-111-13/+14
* Now that we don't have a linuxolator on alpha anymore:Alexander Leidinger2006-05-101-12/+0
* Unbreak COMPAT_LINUX32 option support on amd64.Ruslan Ermilov2006-03-191-0/+1
* Fixup some problems in my previous commit (COMPAT_43).Alexander Leidinger2006-03-181-1/+0
* Get rid of the need of COMPAT_43 in the linuxolator.Alexander Leidinger2006-03-181-2/+15
* Add support for O_NOFOLLOW and O_DIRECT to Linux fcntl() F_GETFL/F_SETFL.Matthew N. Dodd2005-04-131-0/+16
* Match the LINUX32's style with existing styleDavid E. O'Brien2005-01-141-8/+8
* Do not blindly pass linux filesystem specific mount data across.Poul-Henning Kamp2004-12-031-1/+1
* Ignore MNT_NODEV option, it is implicit in choice of filesystem.Poul-Henning Kamp2004-11-261-2/+0