aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/hpfs/hpfs_vnops.c
Commit message (Expand)AuthorAgeFilesLines
* Garbage collect HPFS bits which are now already completely disconnectedAttilio Rao2013-03-021-1264/+0
* Use C99-style initialization for struct dirent in preparation forGleb Kurtsou2012-05-251-4/+15
* Remove unused thread argument to vrecycle().Edward Tomasz Napierala2012-04-231-1/+1
* Remove unused thread argument from vtruncbuf().Edward Tomasz Napierala2012-04-231-1/+1
* Remove prtactive variable and related printf()s in the vop_inactiveKonstantin Belousov2010-11-191-3/+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-4/+4
* Retire the MALLOC and FREE macros. They are an abomination unto style(9).Dag-Erling Smørgrav2008-10-231-2/+2
* Initialize va_rdev to NODEV instead of 0 or VNOVAL in VOP_GETATTR().Konstantin Belousov2008-09-201-1/+1
* Decontextualize the couplet VOP_GETATTR / VOP_SETATTR as the passed threadAttilio Rao2008-08-281-3/+1
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-131-1/+1
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-101-1/+1
* Move vnode-to-file-handle translation from vfs_vptofh to vop_vptofh method.Pawel Jakub Dawidek2007-02-151-0/+20
* Sweep kernel replacing suser(9) calls with priv(9) calls, assigningRobert Watson2006-11-061-5/+6
* I ran into an nfs client panic a couple of times in a row over theAlfred Perlstein2006-01-171-1/+5
* Fix -Wundef from compiling the amd64 LINT.Ruslan Ermilov2005-12-041-2/+2
* - Change all filesystems and vfs_cache to relock the dvp once the child isJeff Roberson2005-04-131-4/+2
* - Correct the dprintf format int the _lookup routine.Jeff Roberson2005-03-281-1/+1
* - Garbage collect an unused variable.Jeff Roberson2005-03-281-5/+1
* - hpfs_lookup() is no longer responsible for unlocking the dvp, this isJeff Roberson2005-03-281-11/+6
* Don't hold a reference on the disk vnode for each inode.Poul-Henning Kamp2005-03-151-6/+0
* Use vfs_hash instead of home-rolled.Poul-Henning Kamp2005-03-141-1/+2
* - The VI_DOOMED flag now signals the end of a vnode's relationship withJeff Roberson2005-03-131-2/+0
* Make filesystems get rid of their own vnodes vnode_pager object inPoul-Henning Kamp2005-01-281-0/+1
* Remove unused argument to vrecycle()Poul-Henning Kamp2005-01-281-1/+1
* Whitespace in vop_vector{} initializations.Poul-Henning Kamp2005-01-131-22/+22
* Wrap the bufobj operations in macros: BO_STRATEGY() and BO_WRITE()Poul-Henning Kamp2005-01-111-1/+1
* Back when VOP_* was introduced, we did not have new-style structPoul-Henning Kamp2004-12-011-31/+23
* hpfs_lookup() should have a vop_cachedlookup_t prototype an correspondingPoul-Henning Kamp2004-12-011-2/+2
* Mechanically change prototypes for vnode operations to use the new typedefs.Poul-Henning Kamp2004-12-011-19/+19
* Make VOP_BMAP return a struct bufobj for the underlying storage devicePoul-Henning Kamp2004-11-151-3/+3
* Move HPFS to GEOM backing instead of DEVFS.Poul-Henning Kamp2004-10-291-2/+3
* Eliminate unnecessary KASSERTs.Poul-Henning Kamp2004-10-271-2/+0
* Use bufdone(), not biodone().Poul-Henning Kamp2004-08-081-2/+2
* Rename suser_cred()'s PRISON_ROOT flag to SUSER_ALLOWJAIL. This isColin Percival2004-07-261-1/+1
* DuH!Poul-Henning Kamp2003-10-181-1/+1
* Initialize b_offset before calling VOP_STRATEGY/VOP_SPECSTRATEGY.Poul-Henning Kamp2003-10-181-0/+1
* - Don't cache_purge() in *_reclaim routines. vclean() does it for us soJeff Roberson2003-10-051-1/+0
* Add the same KASSERT to all VOP_STRATEGY and VOP_SPECSTRATEGY implementationsPoul-Henning Kamp2003-06-151-0/+2
* - Add a new 'flags' parameter to getblk().Jeff Roberson2003-03-041-1/+1
* Finish cleanup of vprint() which was begun with changing v_tag to a string.Nate Lawson2003-03-031-1/+1
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-1/+1
* - Cleanup unlocked accesses to buf flags by introducing a new b_vflag memberJeff Roberson2003-02-091-36/+3
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-1/+1
* Temporarily introduce a new VOP_SPECSTRATEGY operation while I tryPoul-Henning Kamp2003-01-041-1/+1
* Since Jeffr made the std* functions the default in rev 1.63 ofPoul-Henning Kamp2003-01-041-3/+0
* Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/Jens Schweikhardt2002-12-301-1/+1
* Regularize the vop_stdlock'ing protocol across all the filesystemsKirk McKusick2002-10-141-1/+0
* Return ENOTTY when we don't recognize an ioctl.Poul-Henning Kamp2002-09-261-1/+1
* - Use vrefcnt() where it is safe to do so instead of doing direct andJeff Roberson2002-09-251-4/+7