aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_hash.c
Commit message (Collapse)AuthorAgeFilesLines
* In keeping with style(9)'s recommendations on macros, use a ';'Robert Watson2008-03-161-1/+1
| | | | | | | | | | | | after each SYSINIT() macro invocation. This makes a number of lightweight C parsers much happier with the FreeBSD kernel source, including cflow's prcc and lxr. MFC after: 1 month Discussed with: imp, rink Notes: svn path=/head/; revision=177253
* Make insmntque() externally visibile and allow it to fail (e.g. duringTor Egge2007-03-131-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | late stages of unmount). On failure, the vnode is recycled. Add insmntque1(), to allow for file system specific cleanup when recycling vnode on failure. Change getnewvnode() to no longer call insmntque(). Previously, embryonic vnodes were put onto the list of vnode belonging to a file system, which is unsafe for a file system marked MPSAFE. Change vfs_hash_insert() to no longer lock the vnode. The caller now has that responsibility. Change most file systems to lock the vnode and call insmntque() or insmntque1() after a new vnode has been sufficiently setup. Handle failed insmntque*() calls by propagating errors to callers, possibly after some file system specific cleanup. Approved by: re (kensmith) Reviewed by: kib In collaboration with: kib Notes: svn path=/head/; revision=167497
* In vfs_hash_get(): mount point should never be changedXin LI2006-04-181-2/+2
| | | | | | | | | so explicitly constify the mp parameter. Reviewed by: phk Notes: svn path=/head/; revision=157832
* Normalize a significant number of kernel malloc type names:Robert Watson2005-10-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | - Prefer '_' to ' ', as it results in more easily parsed results in memory monitoring tools such as vmstat. - Remove punctuation that is incompatible with using memory type names as file names, such as '/' characters. - Disambiguate some collisions by adding subsystem prefixes to some memory types. - Generally prefer lower case to upper case. - If the same type is defined in multiple architecture directories, attempt to use the same name in additional cases. Not all instances were caught in this change, so more work is required to finish this conversion. Similar changes are required for UMA zone names. Notes: svn path=/head/; revision=151897
* Don't retry when vget() returns ENOENT in the nonblocking case due to theTor Egge2005-09-121-2/+2
| | | | | | | vnode being doomed. It causes a livelock. Notes: svn path=/head/; revision=150011
* Fix bug in vfs_hash_rehash(): use correct bucket. This only affectedPoul-Henning Kamp2005-04-071-1/+1
| | | | | | | msdosfs which is broken in other ways too. Notes: svn path=/head/; revision=144739
* - Grab the lock type that the caller requests in vfs_hash_insert().Jeff Roberson2005-03-241-1/+1
| | | | | | | Sponsored by: Isilon Systems, Inc. Notes: svn path=/head/; revision=144052
* Fix a bad copy&paste mistake I made.Poul-Henning Kamp2005-03-181-1/+1
| | | | | | | Spotted by: truckman Notes: svn path=/head/; revision=143789
* Add two arguments to the vfs_hash() KPI so that filesystems which doPoul-Henning Kamp2005-03-161-2/+6
| | | | | | | not have unique hashes (NFS) can also use it. Notes: svn path=/head/; revision=143692
* Add mnt_hashseed to struct mount and initialize it witn PRNG bits, usePoul-Henning Kamp2005-03-161-15/+17
| | | | | | | | | | | | | it to get better hashing in vfs_hash. In case of an insert collision in vfs_hash_insert(), put the loosing vnode on a special list so that vfs_hash_remove() can just assume that it is on a list. Drop the VI_HASHED flag. Notes: svn path=/head/; revision=143680
* Improve the vfs_hash() API: vput() the unneeded vnode centrally toPoul-Henning Kamp2005-03-151-4/+4
| | | | | | | avoid replicating the vput in all the filesystems. Notes: svn path=/head/; revision=143663
* Simplify the vfs_hash calling convention.Poul-Henning Kamp2005-03-151-1/+2
| | | | Notes: svn path=/head/; revision=143619
* Cleanup accidentally include #if 0 section.Poul-Henning Kamp2005-03-141-35/+0
| | | | Notes: svn path=/head/; revision=143564
* Currently (almost) all filesystems maintain a local inode hash tablePoul-Henning Kamp2005-03-141-0/+184
to get from (mount + inode) to vnode. These tables are mostly copy&pasted from UFS, sized based on desiredvnodes and therefore quite large (128K-512K). Several filesystems are buggy enough that they allocate the hash table even before they know if they will ever be used or not. Add "vfs_hash", a system wide hash table, which will replace all the per-filesystem hash-tables. The fields we add to struct vnode will more or less be saved in the respective filesystems inodes. Having one central implementation will save code and will allow us to justify the complexity of code to dynamically (re)size the hash at a later point. Notes: svn path=/head/; revision=143561