aboutsummaryrefslogtreecommitdiff
path: root/sys/fs
Commit message (Expand)AuthorAgeFilesLines
* ext2fs: minor typo.Pedro F. Giffuni2020-10-061-1/+1
* Modify the NFSv4.2 VOP_COPY_FILE_RANGE() client call to return after oneRick Macklem2020-10-011-14/+12
* Bjorn reported a problem where the Linux NFSv4.1 client isRick Macklem2020-09-261-6/+12
* fusefs: fix mmap'd writes in direct_io modeAlan Somers2020-09-241-8/+8
* udf: Validate the full file entry lengthMark Johnston2020-09-221-16/+30
* Fix a LOR between the NFS server and server side krpc.Rick Macklem2020-09-181-2/+3
* vm_ooffset_t is now unsignedEric van Gyzen2020-09-181-5/+7
* tmpfs: restore atime updates for reads from page cache.Konstantin Belousov2020-09-164-33/+49
* Style.Konstantin Belousov2020-09-162-19/+24
* Fix a LOR between the NFS server and server side krpc.Rick Macklem2020-09-161-2/+3
* Add tmpfs page cache read support.Konstantin Belousov2020-09-154-10/+84
* Microoptimize tmpfs node ref/unref by using atomics.Konstantin Belousov2020-09-153-22/+18
* Do not copy vp into f_data for DTYPE_VNODE files.Konstantin Belousov2020-09-151-1/+1
* Fix a case where the NFSv4.0 server might crash if delegations are enabled.Rick Macklem2020-09-141-1/+7
* tmpfs: drop spurious cache_purge in tmpfs_reclaimMateusz Guzik2020-09-041-2/+0
* fs: clean up empty lines in .c and .h filesMateusz Guzik2020-09-0174-180/+72
* Add a check to test for the case of the "tls" option being used with "udp".Rick Macklem2020-09-011-1/+3
* Fix nfsrvd_locku memory leakEric van Gyzen2020-08-311-0/+2
* Add flags to enable NFS over TLS to the NFS client and server.Rick Macklem2020-08-2710-9/+114
* fuse: unbreak after r364814Mateusz Guzik2020-08-261-1/+2
* cache: drop the always curthread argument from reverse lookup routinesMateusz Guzik2020-08-243-3/+3
* cache: add cache_rename, a dedicated helper to use for renamesMateusz Guzik2020-08-201-4/+1
* extfs: remove redundant little endian conversion.Pedro F. Giffuni2020-08-201-4/+4
* vfs: remove the always-curthread td argument from VOP_RECLAIMMateusz Guzik2020-08-195-7/+7
* vfs: drop the error parameter from vn_isdisk, introduce vn_isdisk_errorMateusz Guzik2020-08-194-4/+4
* Delete the unused "use_ext" argument to nfscl_reqstart().Rick Macklem2020-08-185-72/+52
* extfs: remove redundant little endian conversion.Pedro F. Giffuni2020-08-171-4/+4
* VMIO reads: enable for nullfs upper vnode if the lower vnode supports it.Konstantin Belousov2020-08-162-1/+31
* tmpfs: use vget_prep/vget_finish instead of vget + vnodeMateusz Guzik2020-08-161-4/+3
* vfs: remove the thread argument from vgetMateusz Guzik2020-08-1613-17/+16
* Fix a bug introduced by r363001 for the ext_pgs case.Rick Macklem2020-08-121-1/+1
* devfs: Abstract locking assertionsConrad Meyer2020-08-122-3/+6
* devfs: rework si_usecount to track opensMateusz Guzik2020-08-112-16/+149
* Add an argument to newnfs_connect() that indicates use TLS for the connection.Rick Macklem2020-08-117-30/+16
* vfs: clean MNTK_FPLOOKUP if MNT_UNION is setMateusz Guzik2020-08-101-1/+8
* devfs: bool -> intMateusz Guzik2020-08-102-2/+2
* devfs: save on spurious relocking for devfs_populateMateusz Guzik2020-08-103-2/+16
* devfs: use cheaper lockmgr entry pointsMateusz Guzik2020-08-101-0/+6
* devfs: use vget_prep/vget_finishMateusz Guzik2020-08-101-7/+8
* nullfs: add missing VOP_STAT handlingMateusz Guzik2020-08-101-1/+15
* tmpfs: add VOP_STAT handlerMateusz Guzik2020-08-072-0/+50
* vfs: remove the obsolete privused argument from vaccessMateusz Guzik2020-08-0510-13/+13
* Add optional support for ext_pgs mbufs to the NFS server's read, readlinkRick Macklem2020-07-313-23/+165
* Add support for ext_pgs mbufs to nfsrvd_readdir() and nfsrvd_readdirplus().Rick Macklem2020-07-291-2/+74
* Fix the NFSv4 client so that it checks for support of TimeCreate beforeRick Macklem2020-07-261-2/+13
* Fix the NFS server so that it sets va_birthtime.Rick Macklem2020-07-261-2/+6
* Add support for ext_pgs mbufs to nfsrv_adj().Rick Macklem2020-07-264-45/+94
* tmpfs: add support for lockless lookupMateusz Guzik2020-07-255-9/+76
* Add support for ext_pgs mbufs to nfsm_uiombuflist() and nfsm_split().Rick Macklem2020-07-243-37/+141
* cuse: Stop checking for failures from malloc(M_WAITOK).Mark Johnston2020-07-231-13/+0