aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/hpfs
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Third argument to copyinstr() is a pointer to a size_t, not a pointer to aJohn Baldwin2002-11-071-1/+1
* Regularize the vop_stdlock'ing protocol across all the filesystemsKirk McKusick2002-10-143-3/+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
* Remove any VOP_PRINT that redundantly prints the tag.Nate Lawson2002-09-181-3/+1
* Remove all use of vnode->v_tag, replacing with appropriate substitutes.Nate Lawson2002-09-142-2/+2
* - Replace v_flag with v_iflag and v_vflagJeff Roberson2002-08-042-3/+6
* More s/file system/filesystem/gTom Rhodes2002-05-162-3/+3
* HPFS picks up the vop_stdgetpages and vop_stdputpages member functionsPoul-Henning Kamp2002-05-031-2/+0
* Remove 3 instances of vm_zone.h inclusion.Poul-Henning Kamp2002-04-081-1/+0
* Change callers of mtx_init() to pass in an appropriate lock type name. InJohn Baldwin2002-04-042-2/+2
* Change the suser() API to take advantage of td_ucred as well as do aJohn Baldwin2002-04-011-1/+1
* Remove __P.Alfred Perlstein2002-03-193-43/+41
* Add a flags parameter to VFS_VGET to pass through the desiredKirk McKusick2002-03-175-27/+42
* Introduce the new 64-bit size disk block, daddr64_t. ChangeKirk McKusick2002-03-151-2/+6
* Simple p_ucred -> td_ucred changes to start using the per-thread ucredJohn Baldwin2002-02-271-1/+1
* Commit a know fix for hpfs to use vop_defaultop plug instead of wrongSemen Ustimenko2002-01-141-13/+1
* Fix a BUF_TIMELOCK race against BUF_LOCK and fix a deadlock in vget()Matthew Dillon2001-12-201-1/+1
* Replace 'p' with 'td' as appropriate.John Baldwin2001-11-272-25/+25
* GC compat macros HASHINIT, VOP__LOCK, VOP__UNLOCK, VGET, and VN_LOCK.John Baldwin2001-11-274-20/+13
* Expand LOCKMGR() compat macro.John Baldwin2001-11-274-6/+6
* GC some KSE compatiblity macros that were somehow still here.John Baldwin2001-11-262-33/+23
* GC non-FreeBSD code that didn't work anyways.John Baldwin2001-11-263-324/+4
* Restore these files to being portable:John Baldwin2001-09-122-61/+73
* KSE Milestone 2Julian Elischer2001-09-124-62/+68
* Fix warnings (mostly harmless, due to struct bio being embedded in buf):Peter Wemm2001-06-151-2/+2
* Change the second argument of vflush() to an integer that specifiesIan Dowse2001-05-161-1/+1
* Implement vop_std{get|put}pages() and add them to the default vop[].Poul-Henning Kamp2001-05-011-19/+2
* Uncut&paste som bogus use of VOP_BMAP in hpfs::VOP_STRATEGY.Poul-Henning Kamp2001-04-301-6/+6
* Move the netexport structure from the fs-specific mountstructurePoul-Henning Kamp2001-04-252-10/+9
* This patch removes the VOP_BWRITE() vector.Poul-Henning Kamp2001-04-171-1/+0
* Reviewed by: jlemonAdrian Chadd2001-03-011-9/+5
* Change and clean the mutex lock interface.Bosko Milekic2001-02-091-12/+12
* Remove a DIAGNOSTIC check which belongs in <sys/queue.h> if anyplace at all.Poul-Henning Kamp2001-02-041-4/+0
* Zap last remaining references to (and a use use of) of simple_locks.Peter Wemm2001-01-311-1/+1
* Back out proc locking to protect p_ucred for obtaining additionalJohn Baldwin2001-01-271-9/+1
* Convert all simplelocks to mutexes and remove the simplelock implementations.Jason Evans2001-01-244-19/+19
* The lock being destroyed was misnamed, not unused. Add the lockdestroy()John Baldwin2001-01-241-0/+2
* - Remove unused header include.John Baldwin2001-01-231-5/+3
* Proc locking to protect p_ucred while we obtain an additional reference.John Baldwin2001-01-231-1/+9
* - FreeBSD doesn't have an abortop vnop as far as I can tell, so #ifdefJohn Baldwin2001-01-231-4/+2
* Convert more malloc+bzero to malloc+M_ZERO.David Malone2000-12-081-2/+1
* Give vop_mmap an untimely death. The opportunity to give it a timelyEivind Eklund2000-11-011-1/+0
* Blow away the v_specmountpoint define, replacing it with what it wasEivind Eklund2000-10-091-3/+3
* Convert lockmgr locks from using simple locks to using mutexes.Jason Evans2000-10-044-2/+28
* o Restructure vaccess() so as to check for DAC permission to modify theRobert Watson2000-08-291-1/+1
* Centralize the canonical vop_access user/group/other check in vaccess().Poul-Henning Kamp2000-08-201-41/+3