aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
Commit message (Expand)AuthorAgeFilesLines
* Use VOP_VPUT_PAIR() for eligible VFS syscalls.Konstantin Belousov2021-02-123-21/+18
* Add VOP_VPUT_PAIR() with trivial default implementation.Konstantin Belousov2021-02-122-0/+24
* vn_open(): If the vnode is reclaimed during open(2), do not return error.Konstantin Belousov2021-02-121-2/+0
* buf SU hooks: track buf_start() calls with B_IOSTARTED flagKonstantin Belousov2021-02-121-0/+14
* cache: assorted comment fixupsMateusz Guzik2021-02-091-7/+12
* kern: sonewconn: set so_options before pru_attach()Kyle Evans2021-02-091-1/+1
* Revert "SO_RERROR indicates that receive buffer overflows should be handled a...Alexander V. Chernikov2021-02-083-47/+9
* SO_RERROR indicates that receive buffer overflows should be handled as errors.Alexander V. Chernikov2021-02-083-9/+47
* ktls: Make configuration sysctls available as tunablesMark Johnston2021-02-081-2/+2
* ktls: Use COUNTER_U64_DEFINE_EARLYMark Johnston2021-02-081-43/+20
* cache: remove the largely obsolete general descriptionMateusz Guzik2021-02-051-46/+0
* cache: fix vfs:namecache:lookup:miss probe call sitesMateusz Guzik2021-02-051-5/+3
* cache: drop spurious arg from panic in cache_validateMateusz Guzik2021-02-051-3/+2
* cache: comment on FNVMateusz Guzik2021-02-051-1/+23
* Correct description for kern.proc.proc_tdEd Maste2021-02-021-1/+1
* cache: fix trailing slash support in face of permission problemsMateusz Guzik2021-02-021-0/+10
* cache: add delayed degenerate path handlingMateusz Guzik2021-02-011-32/+25
* cache: move hash computation into the parsing loopMateusz Guzik2021-02-011-3/+42
* cache: add trailing slash supportMateusz Guzik2021-01-311-43/+184
* cache: handle NOFOLLOW requests for symlinksMateusz Guzik2021-01-311-5/+24
* Catch up with 6edfd179c86: mechanically rename IFCAP_NOMAP to IFCAP_MEXTPG.Gleb Smirnoff2021-01-291-1/+1
* poll: use fget_unlocked or fget_only_user when feasibleMateusz Guzik2021-01-291-51/+24
* select: employ fget_only_userMateusz Guzik2021-01-291-13/+22
* fd: add fget_only_userMateusz Guzik2021-01-291-3/+67
* jail: Handle a parent jail when a child is added to itJamie Gritton2021-01-291-2/+20
* Fix getblk() with GB_NOCREAT returning false-negatives.Bryan Drewery2021-01-281-1/+8
* cache: add missing MNT_NOSYMFOLLOW check to symlink traversalMateusz Guzik2021-01-271-0/+15
* cache: fallback when encountering a mount point during .. lookupMateusz Guzik2021-01-271-1/+1
* firmware(9): extend firmware_get() by a "no warn" flag.Bjoern A. Zeeb2021-01-271-14/+31
* cache: tidy up handling of foo/bar lookups where foo is not a directoryMateusz Guzik2021-01-261-12/+3
* cache: stop referring to removing entries as invalidating themMateusz Guzik2021-01-261-2/+2
* Reserve gaps in syscall numbers for local useBrooks Davis2021-01-263-150/+145
* syscalls.master: Add a new syscall type: RESERVEDBrooks Davis2021-01-261-1/+2
* Remove documentation of unimplemented syscallsBrooks Davis2021-01-263-54/+38
* cache: convert cache_fplookup_parse to void now that it always succeedsMateusz Guzik2021-01-261-6/+2
* cache: change ->v_cache_dd synchronisation rulesMateusz Guzik2021-01-251-22/+24
* cache: make ->v_cache_dd accesses atomic-clean for lockless usageMateusz Guzik2021-01-251-13/+13
* cache: make ->nc_flag accesses atomic-clean for lockless usageMateusz Guzik2021-01-251-7/+11
* cache: store vnodes in local vars in cache_zap_lockedMateusz Guzik2021-01-251-16/+18
* cache: assorted cleanupsMateusz Guzik2021-01-251-19/+21
* cache: track calls to cache_symlink_alloc with unsupported sizeMateusz Guzik2021-01-251-0/+6
* cache: add back target entry on renameMateusz Guzik2021-01-231-0/+19
* cache: add symlink support to lockless lookupMateusz Guzik2021-01-234-34/+214
* jail: fix dangling reference bug from 6754ae2572ebJamie Gritton2021-01-221-9/+1
* jail: A jail could be removed without calling OSD methodsJamie Gritton2021-01-221-1/+1
* kvprintf(9): add missing FALLTHROUGHMarius Strobl2021-01-211-0/+1
* malloc_aligned: roundup allocation size up to next power of twoKonstantin Belousov2021-01-211-4/+13
* Restrict supported alignment for malloc_domainset_aligned(9) to PAGE_SIZE.Konstantin Belousov2021-01-211-2/+2
* jail: Use refcount(9) for prison references.Jamie Gritton2021-01-201-59/+86
* devinfo sysctl handler: Do not write zero-length strings in to sbuf twiceVladimir Kondratyev2021-01-201-6/+0