index
:
FreeBSD-src
RELENG_2_2
RELENG_2_3
RELENG_2_3_0
RELENG_2_3_1
RELENG_2_3_2
RELENG_2_3_3
RELENG_2_3_4
RELENG_2_4
RELENG_2_4_4
RELENG_2_4_OLD
devel
devel-11
releng/10.1
releng/10.3
releng/11.0
releng/11.1
stable/10
stable/11
Raptor Engineering's fork of pfsense FreeBSD src with pfSense changes
Raptor Engineering, LLC
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
sys
/
kern
/
vfs_subr.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove unused argument to vrecycle()
phk
2005-01-28
1
-7
/
+1
*
Integrate vclean() into vgonel().
phk
2005-01-28
1
-68
/
+51
*
Remove register keyword
phk
2005-01-28
1
-5
/
+5
*
Don't use VOP_GETVOBJECT, use vp->v_object directly.
phk
2005-01-25
1
-11
/
+12
*
Eliminate the constant flags argument to vclean()
phk
2005-01-24
1
-16
/
+8
*
Change vprint() to vn_printf() which takes varargs.
phk
2005-01-24
1
-12
/
+15
*
Kill the VV_OBJBUF and test the v_object for NULL instead.
phk
2005-01-24
1
-2
/
+0
*
- Add the tunable and sysctl for the mpsafevfs. It currently defaults
jeff
2005-01-24
1
-37
/
+49
*
Fix a bug I introduced in 1.561 which has caused considerable filesystem
phk
2005-01-16
1
-5
/
+5
*
Eliminate unused and unnecessary "cred" argument from vinvalbuf()
phk
2005-01-14
1
-4
/
+3
*
Ditch vfs_object_create() and make the callers call VOP_CREATEVOBJECT()
phk
2005-01-13
1
-16
/
+0
*
Add BO_SYNC() and add a default which uses the secret vnode pointer
phk
2005-01-11
1
-1
/
+1
*
More vnode -> bufobj migration.
phk
2005-01-11
1
-12
/
+13
*
Give flushbuflist() a struct bufv as first argument and avoid home-rolling
phk
2005-01-11
1
-36
/
+21
*
Remove the unused credential argument from VOP_FSYNC() and VFS_SYNC().
phk
2005-01-11
1
-3
/
+3
*
/* -> /*- for copyright notices, minor format tweaks as necessary
imp
2005-01-06
1
-1
/
+1
*
Since we do not support forceful unmount of DEVFS we can do away with
phk
2005-01-04
1
-45
/
+3
*
We can only ever get to vgonechrl() from a devfs vnode, so we do not
phk
2004-12-20
1
-2
/
+0
*
The remaining part of nmount/omount/rootfs mount changes. I cannot sensibly
phk
2004-12-07
1
-114
/
+0
*
Improve vprint() a little bit: break long lines, reduce indent and tell
phk
2004-12-03
1
-4
/
+7
*
Back when VOP_* was introduced, we did not have new-style struct
phk
2004-12-01
1
-22
/
+16
*
Move pbgetvp() and pbrelvp() to vm_pager.c with the rest of the pbuf stuff.
phk
2004-11-15
1
-46
/
+0
*
Move the bit of the syncer which deals with vnodes into a separate
phk
2004-11-14
1
-36
/
+46
*
Eliminate vop_revoke() function now that devfs_revoke() does the entire job.
phk
2004-11-13
1
-42
/
+0
*
Slim vnodes by another four bytes by eliminating the (now) unused field
phk
2004-11-10
1
-2
/
+0
*
Remove vn_todev()
phk
2004-11-10
1
-13
/
+0
*
Remove vnode->v_cachedfs.
phk
2004-11-09
1
-1
/
+0
*
Remove buf->b_dev field.
phk
2004-11-04
1
-2
/
+0
*
Always initialize bo_private along with bo_ops in getnewvnode().
phk
2004-11-03
1
-1
/
+1
*
Loose vfs_mountedon()
phk
2004-10-29
1
-13
/
+0
*
Give the bufobj a private __bo_vnode for now to keep the syncer floating [1]
phk
2004-10-29
1
-1
/
+2
*
Move the syncer linkage from vnode to bufobj.
phk
2004-10-27
1
-34
/
+42
*
Put the I/O block size in bufobj->bo_bsize.
phk
2004-10-26
1
-1
/
+4
*
Loose the v_dirty* and v_clean* alias macros.
phk
2004-10-25
1
-6
/
+8
*
Remove vnode->v_bsize. This was a dead-end.
phk
2004-10-25
1
-4
/
+1
*
Collapse vnode->v_object and buf->b_object into bufobj->bo_object.
phk
2004-10-25
1
-4
/
+0
*
Move the buffer method vector (buf->b_op) to the bufobj.
phk
2004-10-24
1
-0
/
+1
*
When MAC is enabled, warn if getnewvnode() is asked to produce a vnode
rwatson
2004-10-22
1
-0
/
+2
*
Alas, poor SPECFS! -- I knew him, Horatio; A filesystem of infinite
phk
2004-10-22
1
-3
/
+3
*
Add b_bufobj to struct buf which eventually will eliminate the need for b_vp.
phk
2004-10-22
1
-87
/
+64
*
Move the VI_BWAIT flag into no bo_flag element of bufobj and call it BO_WWAIT
phk
2004-10-21
1
-55
/
+22
*
Add BO_* macros parallel to VI_* macros for manipulating the bo_mtx.
phk
2004-10-21
1
-7
/
+11
*
Polish vtruncbuf() to improve readability and style a bit.
phk
2004-10-21
1
-49
/
+42
*
Simplify buf_vlist_remove().
phk
2004-10-21
1
-34
/
+16
*
vtryrecycle: Don't rely on type VBAD alone to mean that we don't need
grog
2004-10-06
1
-1
/
+1
*
getnewvnode: Weaken the panic "cleaned vnode isn't" to a warning.
grog
2004-10-06
1
-1
/
+3
*
Fix a LOR relating to freeing cdevs.
phk
2004-10-01
1
-8
/
+2
*
Hold dev_lock and check for NULL devsw pointer when we determine
phk
2004-09-24
1
-1
/
+5
*
Do not refcount the cdevsw, but rather maintain a cdev->si_threadcount
phk
2004-09-23
1
-24
/
+17
*
Remove unused B_WRITEINPROG flag
phk
2004-09-15
1
-1
/
+0
[next]