aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/nwfs
Commit message (Expand)AuthorAgeFilesLines
* Remove unused includes of <sys/mutex.h> and <machine/mutex.h>.John Baldwin2010-11-091-2/+0
* M_USE_RESERVE has been deprecated for a decade. Eliminate any uses thatAlan Cox2010-10-021-2/+1
* Add dedicated routines to toggle lockmgr flags such as LK_NOSHARE andJohn Baldwin2010-08-201-1/+1
* Eliminate unnecessary page queues locking.Alan Cox2010-06-181-2/+0
* Push down the page queues lock into vm_page_activate().Alan Cox2010-05-071-8/+9
* Eliminate page queues locking around most calls to vm_page_free().Alan Cox2010-05-061-2/+0
* Acquire the page lock around all remaining calls to vm_page_free() onAlan Cox2010-05-051-3/+6
* Move checking against RLIMIT_FSIZE into one place, vn_rlimit_fsize().Edward Tomasz Napierala2010-05-051-13/+4
* Lock the page around vm_page_activate() and vm_page_deactivate() callsKonstantin Belousov2010-05-031-2/+6
* Switch to our preferred 2-clause BSD license.Joel Dahl2010-04-0710-65/+5
* Don't touch v_interlock; use VI_* macros instead.Edward Tomasz Napierala2010-01-272-8/+8
* Eliminate the unnecessary clearing of a page's dirty bits fromAlan Cox2009-05-231-2/+5
* Remove the thread argument from the FSD (File-System Dependent) parts ofAttilio Rao2009-05-111-11/+17
* After r186194 the *fs_strategy() functions always return 0.Bjoern A. Zeeb2009-01-311-2/+1
* Remove unused local variables.Bjoern A. Zeeb2009-01-312-4/+0
* According to phk@, VOP_STRATEGY should never, _ever_, returnEdward Tomasz Napierala2008-12-161-1/+1
* Introduce accmode_t. This is required for NFSv4 ACLs - it will be neccessaryEdward Tomasz Napierala2008-10-281-3/+3
* Retire the MALLOC and FREE macros. They are an abomination unto style(9).Dag-Erling Smørgrav2008-10-232-7/+7
* Remove the struct thread unuseful argument from bufobj interface.Attilio Rao2008-10-101-2/+2
* Decontextualize the couplet VOP_GETATTR / VOP_SETATTR as the passed threadAttilio Rao2008-08-282-16/+13
* Replace lockmgr lock protecting nwfs vnode hash table with an sx lock.Robert Watson2008-03-021-12/+15
* - Handle buffer lock waiters count directly in the buffer cache insteadAttilio Rao2008-03-011-1/+1
* Introduce some functions in the vnode locks namespace and in the ffsAttilio Rao2008-02-241-1/+1
* Cleanup lockmgr interface and exported KPI:Attilio Rao2008-01-241-11/+10
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-132-2/+2
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-102-2/+2
* Get rid of qaddr_t.Alfred Perlstein2007-10-161-2/+2
* Change the VOP_OPEN(), vn_open() vnode operation and d_fdopen() cdev operationKonstantin Belousov2007-06-011-2/+2
* Make insmntque() externally visibile and allow it to fail (e.g. duringTor Egge2007-03-131-0/+6
* Drop crummy fattime to timespec conversion routines.Poul-Henning Kamp2006-10-241-163/+12
* Use utc_offset() where applicable, and hide the internals of itPoul-Henning Kamp2006-10-021-5/+3
* First part of a little cleanup in the calendar/timezone/RTC handling.Poul-Henning Kamp2006-10-021-0/+1
* Use mount interlock to protect all changes to mnt_flag and mnt_kern_flag.Tor Egge2006-09-261-0/+2
* Introduce a field to struct vm_page for storing flags that areAlan Cox2006-08-091-1/+1
* Call vm_object_page_clean() with the object lock held.Stephan Uphoff2006-05-251-1/+4
* Do not set B_NOCACHE on buffers when releasing them in flushbuflist().Stephan Uphoff2006-05-251-0/+4
* I ran into an nfs client panic a couple of times in a row over theAlfred Perlstein2006-01-171-1/+5
* Eradicate caddr_t from the VFS API.Dag-Erling Smørgrav2005-12-141-2/+2
* Fix -Wundef warnings found when compiling i386 LINT, GENERIC andRuslan Ermilov2005-12-051-1/+1
* Normalize a significant number of kernel malloc type names:Robert Watson2005-10-312-3/+3
* Update nwfs_lookup() to match the current cache_lookup() API.Don Lewis2005-10-161-26/+11
* In preparation for making the modules actually use opt_*.h filesYaroslav Tykhiy2005-10-141-4/+0
* The NWFS code in RELENG_6 is broken due to a typo inPoul-Henning Kamp2005-09-301-1/+1
* Do not dereference dvp pointer before doing a NULL check.Alexander Kabaev2005-05-111-1/+2
* - Change all filesystems and vfs_cache to relock the dvp once the child isJeff Roberson2005-04-131-7/+3
* - Remove wantparent, it is no longer necessary. An assert in vfs_lookup.cJeff Roberson2005-03-291-4/+3
* - nwfs_lookup() is no longer responsible for unlocking the dvp, this isJeff Roberson2005-03-281-26/+10
* - Update vfs_root implementations to match the new prototype. None ofJeff Roberson2005-03-241-2/+2
* - The VI_DOOMED flag now signals the end of a vnode's relationship withJeff Roberson2005-03-132-2/+1
* vp->v_id is a private field for the vfs namecache and it is a big mistakePoul-Henning Kamp2005-02-221-11/+10