summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_getcwd.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Fix the initialization of bp before calling vfs_getcwd_commonbeck2019-05-301-3/+3
* namei() generate KTR_NAMEI record input filenames, but getcwd(2) andderaadt2019-05-301-1/+6
* use copyoutstr, instead of fragile range math; ok beckderaadt2019-05-301-7/+5
* The past is fuzzy, but it appears during development of __getcwd, *retvalderaadt2019-05-291-2/+1
* Add a kernel implementation of realpath() as __realpath().beck2019-05-131-2/+2
* Drop unnecessary `p' parameter from vget(9).visa2018-05-271-3/+2
* Remove proc from the parameters of vn_lock(). The parameter isvisa2018-05-021-4/+4
* Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is alwaysvisa2018-04-281-2/+2
* Do not pass an uninitialized size value to free(9) even if the addrbluhm2017-09-061-2/+2
* Add some sanity length checks in VFS directory scan. This protectsbluhm2017-07-281-8/+15
* Remove the unused flags argument from VOP_UNLOCK().natano2016-03-191-2/+2
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* primary change: move uvm_vnode out of vnode, keeping only a pointer.tedu2014-12-161-1/+2
* pass size argument to free()deraadt2014-11-031-3/+3
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-3/+3
* Switch time_t, ino_t, clock_t, and struct kevent's ident and dataguenther2013-08-131-4/+3
* arguments to bcopy/memmove are reversed. put on thinking cap, then commit.tedu2013-06-091-2/+2
* change a bcopy to memmove (mainly to catch platforms that don't offer it)tedu2013-06-091-2/+2
* Add new KERN_PROC_CWD sysctl to get the current working directory of a process.nicm2011-12-091-3/+1
* clean up a few things that where left to rot after bob's vfs cache work.thib2010-05-191-2/+1
* fix typos in comments, no code changes;schwarze2010-01-141-2/+2
* Remove the VREF() macro and replaces all instances with a call to verf(),thib2009-07-091-4/+4
* Remove unused function proc_isunder()blambert2009-04-171-17/+1
* First pass at removing clauses 3 and 4 from NetBSD licenses.ray2008-06-261-8/+1
* fix the "double-path" errors seen with getcwd by saving the orignalthib2007-08-071-2/+6
* back out vfs change - todd fries has seen afs issues, and I'm suspiciousbeck2007-05-301-8/+8
* Step one of some vnode improvements - change getnewvnode tobeck2007-05-291-8/+8
* Don't cast malloc()pedro2006-05-171-3/+3
* Move vn_isunder() to vfs_vnops.c, that's the place for vn_* functionspedro2006-05-011-15/+1
* Rename functions and move prototypes aroundpedro2006-05-011-16/+8
* Make static functions global so DDB can see thempedro2006-05-011-10/+11
* Prune remaining of the code, no binary changepedro2006-04-301-122/+53
* Prune getcwd_common() and vn_isunder(), no binary changepedro2006-04-301-47/+41
* Prune proc_isunder() and sys___getcwd(), no binary changepedro2006-04-301-33/+18
* KNF bitspedro2006-04-291-14/+14
* Instrumentation for an in-kernel getcwd() implementation.pedro2006-04-281-0/+560