aboutsummaryrefslogtreecommitdiff
path: root/sys/compat/linux/linux_file.c
Commit message (Expand)AuthorAgeFilesLines
...
* Add kern_lseek() and use it instead of sys_lseek() in various compats.Edward Tomasz Napierala2017-01-301-19/+5
* Replace sys_ftruncate() with kern_ftruncate() in various compats.Edward Tomasz Napierala2017-01-301-8/+1
* Eliminate use of sys_fsync() and sys_fdatasync().Ed Schouten2016-08-151-3/+1
* Minor style(9) cleanup, no functional changes.Dmitry Chagin2016-05-221-117/+109
* Cleanup redundant parenthesis from existing howmany()/roundup() macro uses.Pedro F. Giffuni2016-04-221-3/+2
* Make pipes in CloudABI work.Ed Schouten2015-07-291-2/+2
* Replace struct filedesc argument in getvnode with struct threadMateusz Guzik2015-06-161-2/+1
* Add preliminary fallocate system call implementationDmitry Chagin2015-05-241-0/+15
* Implement F_DUPFD_CLOEXEC fcntl flag.Dmitry Chagin2015-05-241-0/+3
* Change linux faccessat syscall definition to match actual linux one.Dmitry Chagin2015-05-241-5/+2
* Where possible we will use M_LINUX malloc(9) type.Dmitry Chagin2015-05-241-4/+4
* Disable i386 call for x86-64 Linux.Dmitry Chagin2015-05-241-7/+16
* Implement dup3() system call.Dmitry Chagin2015-05-241-0/+19
* Add back fdrop() missed in r281726.Edward Tomasz Napierala2015-04-191-0/+1
* Optimize the O_NOCTTY handling hack in linux_common_open().Edward Tomasz Napierala2015-04-191-29/+28
* Remove unused code from linux_mount(), and make it possible to mountEdward Tomasz Napierala2015-04-181-29/+5
* Remove the no-at variants of the kern_xx() syscall helpers. E.g., weKonstantin Belousov2014-11-131-17/+25
* Update kernel inclusions of capability.h to use capsicum.h instead; someRobert Watson2014-03-161-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