summaryrefslogtreecommitdiffstats
path: root/sys/miscfs (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Change unp_scan() and its callbacks to pass the array of struct file **guenther2015-07-181-2/+2
* Set POLLHUP even if no valid events were specified as per POSIX.millert2015-05-101-5/+5
* Now that we have a_fflag in struct vop_poll_args we can handlemillert2015-05-051-13/+34
* Tweaks utimensat/futimens handling to always update ctime, even when bothguenther2015-04-171-3/+4
* Remove some includes include-what-you-use claims don'tjsg2015-03-142-4/+2
* set the eofflag in readdir like we're supposed to.tedu2015-02-191-3/+7
* Fix a bug introduced in the last commit that broke EOF handlingmillert2015-02-121-10/+11
* Convert uiomovei() with a constant size argument to uiomove().miod2015-02-101-2/+2
* Switch uiomovei(..., sizeof whatever, ...) to uiomove().miod2015-02-101-2/+2
* First step towards making uiomove() take a size_t size argument:miod2015-02-102-9/+9
* knftedu2014-12-231-10/+19
* convert from nointr to waitoktedu2014-12-231-3/+3
* primary change: move uvm_vnode out of vnode, keeping only a pointer.tedu2014-12-165-5/+10
* use arc4random_buf() instead of (r << 32) | r; discussed with matthewderaadt2014-12-031-2/+2
* move arc4random prototype to systm.h. more appropriate for most codetedu2014-11-181-3/+1
* include sys/unistd.h where needed instead of indirect reliance. ok jsgtedu2014-11-031-1/+3
* Instead of trying to emulate select/poll semantics with respect to EOFmillert2014-10-091-16/+10
* EOPNOTSUPP for quotactl. from Martin Natanotedu2014-10-031-2/+2
* remove uneeded proc.h includesjsg2014-09-143-6/+3
* Actually remove the procfs filesguenther2014-09-087-2121/+0
* fix kqueue read/write filters for msdosfs and fusefsjsg2014-08-101-7/+36
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-129-26/+26
* decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.hderaadt2014-07-084-11/+4
* Track whether a process is a zombie or not yet fully built via flagsguenther2014-07-041-4/+5
* In fusefs_unmount() we need to send the FBT_DESTROY fusebuf only ifsyl2014-06-041-12/+12
* Add -o max_read=XXX support in fuse. This is needed by usmb to have asyl2014-05-203-8/+12
* Add some consistency in fuse error handling. We need to return ENXIOsyl2014-05-191-34/+80
* Include <sys/vmmeter.h> directly instead of relying on it beingmpi2014-05-061-6/+3
* Do not rely on the fact that sys/vnode.h includes all the worldmpi2014-03-184-4/+8
* Replace the vnode struct vattr cache by VOP_GETATTR() calls.syl2014-02-013-12/+17
* Add fuse support for IO_APPEND.syl2014-01-291-1/+12
* naughty guenther didn't compiletedu2014-01-211-3/+1
* Threads can't be zombies, only processes, so change zombproc to zombprocess,guenther2014-01-201-21/+10
* Do not complain if release is not implemented in fuse client.syl2014-01-201-2/+2
* Move p_textvp from struct proc to struct process so that the exit codeguenther2014-01-201-3/+3
* Remove an infinite loop in fuse_device_cleanup().syl2014-01-161-6/+25
* Add support for mknod in fuse.syl2014-01-162-3/+66
* Add support for truncate in fuse.syl2013-12-201-2/+4
* Unset fuse_mnt in fusefs_unmount after vflushing and freeing fbufs in use.pelikan2013-12-103-10/+10
* Add support for FBT_RECLAIM that allow us to free the representationsyl2013-12-031-1/+13
* Unmount the fuse filesystem if the communication end withsyl2013-12-031-2/+9
* Add some missing check to know if the communication channel withsyl2013-12-033-11/+24
* Remove some double free on fusebuf datas.syl2013-11-281-1/+3
* use printf(9) consistently in FUSEsyl2013-10-074-10/+10
* Add kqueue's support for FUSE.syl2013-10-071-3/+80
* Introduce fb_delete() helper and use it in FUSE code.syl2013-10-076-71/+68
* Use full 64-bit UUIDs in FUSE.syl2013-10-071-2/+2
* Allocate fb_dat in fb_setup(9)syl2013-10-071-1/+6
* Add new ioctl for handling FUSE bufferssyl2013-10-072-3/+117
* Rework fuseread() and fusewrite().syl2013-10-075-121/+86