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_bio.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed init functions argument type - caddr_t -> void *. Fixed a couple of
dg
1995-09-09
1
-2
/
+2
*
Added VOP_GETPAGES/VOP_PUTPAGES and also the "backwards" block count
dyson
1995-09-04
1
-2
/
+2
*
Improvements to the cluster code, minor vfs_bio efficiency:
dyson
1995-09-03
1
-22
/
+42
*
Reviewed by: julian with quick glances by bruce and others
julian
1995-08-28
1
-3
/
+18
*
Another minor optimization, this time to incore().
dg
1995-08-24
1
-6
/
+6
*
Minor optimization.
dg
1995-08-24
1
-6
/
+6
*
Resize both VMIO and non-VMIO buffers if the size changes.
dg
1995-08-06
1
-8
/
+2
*
Eliminate sloppy common-style declarations. There should be none left for
bde
1995-07-29
1
-3
/
+4
*
Killed bogus casts in tsleep/wakeup calls.
dg
1995-07-25
1
-15
/
+15
*
Fixed broken offset use in vfs_unbusy_pages() which resulted in several
dg
1995-07-25
1
-5
/
+15
*
Panic if no object in biodone. Slightly optimized allocbuf() again.
dg
1995-07-24
1
-5
/
+3
*
Added some additional diagnostic information output when panicing in
dg
1995-07-23
1
-3
/
+3
*
Fixed two cases where some parans were missing, resulting in some bogus
dg
1995-07-23
1
-18
/
+16
*
Re-lookup the buffer if the vnode isn't locked. The previous check for
dg
1995-07-21
1
-4
/
+2
*
Fixed "bufspace" calculation. It was lossy in some circumstances of the
dg
1995-07-17
1
-14
/
+5
*
Resize buffers if they aren't the correct size. Several months ago we
dg
1995-07-15
1
-7
/
+2
*
1) Converted v_vmdata to v_object.
dg
1995-06-28
1
-8
/
+8
*
Remove trailing whitespace.
rgrimes
1995-05-30
1
-7
/
+7
*
Changes to fix the following bugs:
dg
1995-05-21
1
-19
/
+118
*
Fix -Wformat warnings from LINT kernel.
rgrimes
1995-05-11
1
-4
/
+7
*
Check for curproc != NULL before dereferencing it.
dg
1995-04-30
1
-5
/
+6
*
Removed unused & empty bufstats() function.
dg
1995-04-16
1
-6
/
+1
*
Killed gratuitous b_vp=NULL in bufinit. The entire buffer is already
dg
1995-04-16
1
-2
/
+1
*
1) Check for curproc != NULL in bread/bwrite. John convinced me that this
dg
1995-04-16
1
-3
/
+10
*
Changes from John Dyson and myself:
dg
1995-04-09
1
-141
/
+115
*
Removed some redundant 'vmio' checks.
dg
1995-03-27
1
-4
/
+4
*
Removed third arg (vmio) to allocbuf() that was added with the original
dg
1995-03-26
1
-8
/
+7
*
Add and move declarations to fix all of the warnings from `gcc -Wimplicit'
bde
1995-03-16
1
-4
/
+2
*
Removed most of the special policy regarding the seperation of VMIO and
dg
1995-03-07
1
-62
/
+13
*
Added some more of John's "anti-chatter" fixes - set the page activation
dg
1995-03-04
1
-4
/
+11
*
Fixes from John Dyson to work around vnode lock hang. Basically, remove
dg
1995-03-03
1
-8
/
+11
*
Various changes from John and myself that do the following:
dg
1995-03-01
1
-6
/
+9
*
Fixed thrashing buffer problem.
dg
1995-02-25
1
-2
/
+2
*
Added some code to make sure that buffers associated with directories and
dg
1995-02-22
1
-41
/
+55
*
Only do object paging_in_progress wakeups if someone is waiting on this
dg
1995-02-22
1
-12
/
+63
*
Only clear B_VMIO in brelse() - a bunch of special processing is required
dg
1995-02-18
1
-7
/
+1
*
Make B_NOCACHE and B_INVAL buffers work correctly - throw away the data in
dg
1995-02-03
1
-2
/
+5
*
Fix problem with freeing busy pages reported by Nick Sayer.
dg
1995-01-26
1
-4
/
+6
*
Fixed a variety of deadlock and panic bugs, removed the bypass code, and
dg
1995-01-24
1
-217
/
+61
*
Restore original fix from ohki, not check m for NULL it is already done
ache
1995-01-21
1
-3
/
+3
*
Change if (m->valid == 0) to if (m && m->valid == 0)
ache
1995-01-20
1
-2
/
+2
*
Submitted by: ohki@gssm.otsuka.tsukuba.ac.jp
wpaul
1995-01-20
1
-3
/
+5
*
Attempt to close a hole using splhigh/splx. There still appears to be a
dg
1995-01-15
1
-1
/
+6
*
MFS doesn't bother to associate a struct mount with the vnode...so work
dg
1995-01-11
1
-18
/
+16
*
PG_FAKE is no longer used - so don't bother to clear it.
dg
1995-01-10
1
-2
/
+1
*
Fixed some formatting weirdness that I overlooked in the previous commit.
dg
1995-01-10
1
-7
/
+7
*
These changes embody the support of the fully coherent merged VM buffer cache,
dg
1995-01-09
1
-222
/
+1027
*
Only VM_WAIT if curproc != pageproc. A deadlock can occur otherwise.
dg
1994-10-23
1
-3
/
+3
*
Removed references to bclnlist which we don't use/support/need.
dg
1994-10-18
1
-2
/
+1
*
Stuff object into v_vmdata rather than pager. Not important which at
dg
1994-10-05
1
-14
/
+9
[next]