aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_cache.c
Commit message (Expand)AuthorAgeFilesLines
* sys/kern: spelling fixes in comments.Pedro F. Giffuni2016-04-291-2/+2
* Provide more correct sizing of the KVA consumed by a vnode, used byKonstantin Belousov2016-02-241-1/+1
* cache: minor changesMateusz Guzik2016-01-211-28/+20
* cache: perform . lockup without the namecache lockMateusz Guzik2016-01-211-28/+24
* cache: provide a helper for computing the hashMateusz Guzik2016-01-211-8/+14
* cache: use counter(9) API to maintain statisticsMateusz Guzik2016-01-211-61/+80
* cache: ansify functions and fix some style issuesMateusz Guzik2016-01-071-38/+17
* Fix style issues around existing SDT probes.Mark Johnston2015-12-161-2/+0
* save some bytes by using more concise SDT_PROBE<n> instead of SDT_PROBEAndriy Gapon2015-09-281-45/+40
* Track changes to kern.maxvnodes and appropriately increase or decreaseKirk McKusick2015-09-061-0/+44
* vfs: implement v_holdcnt/v_usecount manipulation using atomic opsMateusz Guzik2015-07-161-4/+4
* Modify kern___getcwd() to take max pathlen limit as an additionalEdward Tomasz Napierala2015-04-211-4/+6
* More accurately collect name-cache statistics in sysctl functionsKirk McKusick2015-04-181-20/+16
* Indeed, instead of hiding the kern___getcwd() bug by bogus castDmitry Chagin2015-01-041-9/+1
* Fix multiple incorrect SYSCTL arguments in the kernel:Hans Petter Selasky2014-10-211-1/+1
* vn_path_to_global_path: update comment.Sergey Kandaurov2014-08-031-1/+1
* Fix accounting for the negative cache entries when reusing v_cache_dd.Konstantin Belousov2013-12-271-4/+10
* dtrace sdt: remove the ugly sname parameter of SDT_PROBE_DEFINEAndriy Gapon2013-11-261-15/+15
* - For kernel compiled only with KDTRACE_HOOKS and not any lock debuggingAttilio Rao2013-11-251-1/+0
* namecache sdt: freebsd doesn't support structured characters yetAndriy Gapon2013-07-091-2/+2
* When renaming a directory from one parent directory to another,Kirk McKusick2013-03-201-0/+22
* Remove the support for using non-mpsafe filesystem modules.Konstantin Belousov2012-10-221-37/+6
* Post r230394, the Lookup RPC counts for both NFS clients increasedRick Macklem2012-03-031-5/+41
* o Reduce chances for integer overflow.Maxim Konovalov2012-02-251-2/+2
* Rename cache_lookup_times() to cache_lookup() and retire the old API andJohn Baldwin2012-02-061-12/+2
* Fix remaining calls to cache_enter() in both NFS clients to provideKonstantin Belousov2012-01-251-9/+5
* Apparently, both nfs clients do not use cache_enter_time()Konstantin Belousov2012-01-231-29/+23
* Remove the nc_time and nc_ticks elements from struct namecache, andKonstantin Belousov2012-01-221-56/+131
* Close a race in NFS lookup processing that could result in stale name cacheJohn Baldwin2012-01-201-8/+58
* Fix missing in r230129:Martin Matuska2012-01-151-1/+1
* Introduce vn_path_to_global_path()Martin Matuska2012-01-151-0/+74
* put sys/systm.h at its proper place or add it if missingAndriy Gapon2011-12-121-1/+1
* Existing VOP_VPTOCNP() interface has a fatal flow that is critical forKonstantin Belousov2011-11-191-17/+48
* Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs.Ed Schouten2011-11-071-1/+2
* In order to maximize the re-usability of kernel code in user space thisKip Macy2011-09-161-1/+1
* Fix some more style(9) issues.Rebecca Cran2010-11-141-21/+21
* Fix style(9) issues from r215281 and r215282.Rebecca Cran2010-11-141-14/+28
* Add some descriptions to sys/kern sysctls.Rebecca Cran2010-11-141-23/+23
* Remove sysctl debug.ncnegfactor, it is renamed to vfs.ncnegfactor.Konstantin Belousov2010-10-301-2/+0
* Provide vfs.ncsizefactor instead of hard-coding namecache ratio.Konstantin Belousov2010-10-161-12/+20
* Add an extra comment to the SDT probes definition. This allows us to getRui Paulo2010-08-221-16/+16
* Use ISO C99 integer types in sys/kern where possible.Ed Schouten2010-06-211-2/+2
* The cache_enter(9) function shall not be called for doomed dvp.Konstantin Belousov2010-04-201-0/+2
* Fix typo.Konstantin Belousov2010-04-151-1/+1
* Correctly handle unlock for !MAKEENTRY case, after successfull attempt ofKonstantin Belousov2009-08-141-1/+2
* Add explicit struct ucred * argument for VOP_VPTOCNP, to be used byKonstantin Belousov2009-06-211-7/+9
* Unlock the cache lock before returning when we run out of buffer spaceJoe Marcus Clarke2009-06-051-1/+4
* Unbreak the build. Add missed probes.Konstantin Belousov2009-05-311-6/+12
* Eliminate code duplication in vn_fullpath1() around the cache lookupsKonstantin Belousov2009-05-311-85/+75
* More fallout from negative dotdot caching. Negative entries shouldAlexander Kabaev2009-04-171-8/+13