aboutsummaryrefslogtreecommitdiff
path: root/sys/fs
Commit message (Expand)AuthorAgeFilesLines
* Originally when DEVFS was added, a global variable "devfs_present"Poul-Henning Kamp2003-01-191-1/+0
* Fake up a struct componentname to pass to VOP_WHITEOUT instead of passingTim J. Robbins2003-01-181-1/+10
* Even if the permissions deny it, a process should be allowed toPoul-Henning Kamp2003-01-131-2/+13
* Bow to the whining masses and change a union back into void *. RetainMatthew Dillon2003-01-135-11/+12
* Change struct file f_data to un_data, a union of the correct structMatthew Dillon2003-01-125-11/+11
* Add symlink support to devfs_rule_matchpath(). This allows the userDima Dorfman2003-01-111-1/+2
* Don't override the vop_lock, vop_unlock and vop_isunlocked methods.Poul-Henning Kamp2003-01-051-3/+0
* Don't take the detour over VOP_STRATEGY from spec_getpages, call ourPoul-Henning Kamp2003-01-051-1/+1
* Split out the vnode and buf arguments to the internal strategy workerPoul-Henning Kamp2003-01-051-13/+3
* Repair vnode locking in portal_lookup(). Specifically, lock the fileTim J. Robbins2003-01-051-2/+10
* Temporarily introduce a new VOP_SPECSTRATEGY operation while I tryPoul-Henning Kamp2003-01-045-6/+43
* resort vnode ops listPoul-Henning Kamp2003-01-041-3/+3
* Replace spec_bmap() with vop_panic: We should never BMAP a device backedPoul-Henning Kamp2003-01-041-35/+1
* Since Jeffr made the std* functions the default in rev 1.63 ofPoul-Henning Kamp2003-01-0411-40/+0
* Convert calls to BUF_STRATEGY to VOP_STRATEGY calls. This is a no-op sincePoul-Henning Kamp2003-01-031-1/+1
* Remove unused second argument from DEV_STRATEGY().Poul-Henning Kamp2003-01-031-3/+3
* Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/Jens Schweikhardt2002-12-303-3/+3
* There is some sort of race/deadlock which I have not identifiedPoul-Henning Kamp2002-12-291-1/+6
* Abstract-out the constants for the sequential heuristic.Matthew Dillon2002-12-281-1/+1
* Trim left-over and unused vop_refreshlabel() bits from devfs.Robert Watson2002-12-281-23/+0
* Remove redundant check for negative or zero v_usecount; vrele() alreadyTim J. Robbins2002-12-151-14/+7
* Keep trying to flush the vnode list for the mount while some are stillTim J. Robbins2002-12-133-2/+19
* Fix build with SMB_VNODE_DEBUG defined; use td_proc->p_pid instead ofTim J. Robbins2002-12-131-1/+2
* Store a reference to the parent directory's vnode in struct smbnode,Tim J. Robbins2002-12-136-11/+13
* Remove dm_root entry from struct devfs_mount. It's never set, and isRobert Watson2002-12-094-7/+8
* Fix instances of macros with improperly parenthasized arguments.Alfred Perlstein2002-11-091-2/+2
* Cast a pointer to a uintptr_t to quiet a warning.John Baldwin2002-11-071-1/+1
* Third argument to copyinstr() is a pointer to a size_t, not a pointer to aJohn Baldwin2002-11-071-1/+1
* Add debug.doslowdown to enable/disable niced slowdown on I/O. DefaultKirk McKusick2002-11-041-1/+5
* Unbreak MNT_UPDATE when running with cd as root. Detect mountroot byPeter Wemm2002-11-021-2/+1
* Put a KASSERT in specfs::strategy() to check that the incoming bufferPoul-Henning Kamp2002-11-011-2/+8
* Fix winChkName() to match when the last slot contains nothing but theSemen Ustimenko2002-10-291-1/+8
* In VOP_LOOKUP, don't deny DELETE and RENAME operationsMaxime Henrion2002-10-261-1/+2
* Slightly change the semantics of vnode labels for MAC: rather thanRobert Watson2002-10-266-130/+1
* Within ufs, the ffs_sync and ffs_fsync functions did not alwaysKirk McKusick2002-10-251-4/+14
* This checkin reimplements the io-request priority hack in a wayKirk McKusick2002-10-221-1/+24
* Grrr, s/PBP/BPB/ here as well.John Baldwin2002-10-211-1/+1
* Spell the BPB member of the 7.10 bootsector as bsBPB rather than bsPBP toJohn Baldwin2002-10-211-1/+1
* Missed a case of _POSIX_MAC_PRESENT -> _PC_MAC_PRESENT rename.Robert Watson2002-10-201-2/+2
* '&' not used for pointers to functions.Poul-Henning Kamp2002-10-201-2/+2
* Remove even more '&' from pointers to functions.Poul-Henning Kamp2002-10-201-26/+26
* umap_sync is empty and is identical to vfs_stdsync. Remove it andAlexander Kabaev2002-10-191-16/+1
* style(9)Alexander Kabaev2002-10-191-4/+7
* Fix comments and one resulting code confusion about the type of thePoul-Henning Kamp2002-10-168-8/+9
* Be consistent about functions being static.Poul-Henning Kamp2002-10-162-2/+2
* A better solution to avoiding variable sized structs in DEVFS.Poul-Henning Kamp2002-10-162-3/+5
* #include "opt_devfs.h" to protect against variable sized structures.Poul-Henning Kamp2002-10-161-0/+2
* Plug an infrequent (I think) memory leak.Poul-Henning Kamp2002-10-151-1/+3
* Regularize the vop_stdlock'ing protocol across all the filesystemsKirk McKusick2002-10-1420-121/+7
* - Remove a useless initialization for 'ronly', if it hadn't beenMaxime Henrion2002-10-131-2/+2