diff options
| author | David Greenman <dg@FreeBSD.org> | 1994-08-08 09:11:44 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1994-08-08 09:11:44 +0000 |
| commit | 866dba73053eb0bdc9569af054f54e7db30a2702 (patch) | |
| tree | cd38242284458e56c6e3c3915a1c3113712bc4b7 /sys/miscfs | |
| parent | 61d5ffaf10e8b89118dab351dc6117a08bee6887 (diff) | |
Notes
Diffstat (limited to 'sys/miscfs')
| -rw-r--r-- | sys/miscfs/specfs/spec_vnops.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/miscfs/specfs/spec_vnops.c b/sys/miscfs/specfs/spec_vnops.c index 08907a2c272ca..bb2fe1062dde2 100644 --- a/sys/miscfs/specfs/spec_vnops.c +++ b/sys/miscfs/specfs/spec_vnops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)spec_vnops.c 8.6 (Berkeley) 4/9/94 - * $Id$ + * $Id: spec_vnops.c,v 1.3 1994/08/02 07:45:27 davidg Exp $ */ #include <sys/param.h> @@ -272,8 +272,6 @@ spec_read(ap) return (error); } error = uiomove((char *)bp->b_data + on, n, uio); - if (n + on == bsize) - bp->b_flags |= B_AGE; brelse(bp); } while (error == 0 && uio->uio_resid > 0 && n != 0); return (error); @@ -352,7 +350,6 @@ spec_write(ap) } error = uiomove((char *)bp->b_data + on, n, uio); if (n + on == bsize) { - bp->b_flags |= B_AGE; bawrite(bp); } else bdwrite(bp); |
