summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_cluster.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1999-09-20 19:53:23 +0000
committerphk <phk@FreeBSD.org>1999-09-20 19:53:23 +0000
commitc0818069f7d5c0aa756e24c5d4605e5c1da60edc (patch)
tree422020e9e6dd53768275b4e0e2d99cd66cd75309 /sys/kern/vfs_cluster.c
parent00b895590eab4794801adbd3611f3c9f841bd566 (diff)
downloadFreeBSD-src-c0818069f7d5c0aa756e24c5d4605e5c1da60edc.zip
FreeBSD-src-c0818069f7d5c0aa756e24c5d4605e5c1da60edc.tar.gz
Initialize vp->v_maxio to its default in getnetvnode() rather than
four different places in vfs_cluster.c
Diffstat (limited to 'sys/kern/vfs_cluster.c')
-rw-r--r--sys/kern/vfs_cluster.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/kern/vfs_cluster.c b/sys/kern/vfs_cluster.c
index 6bfc120..5037311 100644
--- a/sys/kern/vfs_cluster.c
+++ b/sys/kern/vfs_cluster.c
@@ -101,8 +101,6 @@ cluster_read(vp, filesize, lblkno, size, cred, totread, seqcount, bpp)
long origtotread;
error = 0;
- if (vp->v_maxio == 0)
- vp->v_maxio = DFLTPHYS;
/*
* Try to limit the amount of read-ahead by a few
@@ -361,8 +359,6 @@ cluster_rbuild(vp, filesize, lbn, blkno, size, run, fbp)
bp->b_bufsize = 0;
bp->b_npages = 0;
- if (vp->v_maxio == 0)
- vp->v_maxio = DFLTPHYS;
inc = btodb(size);
for (bn = blkno, i = 0; i < run; ++i, bn += inc) {
if (i != 0) {
@@ -544,8 +540,6 @@ cluster_write(bp, filesize)
int async;
vp = bp->b_vp;
- if (vp->v_maxio == 0)
- vp->v_maxio = DFLTPHYS;
if (vp->v_type == VREG) {
async = vp->v_mount->mnt_flag & MNT_ASYNC;
lblocksize = vp->v_mount->mnt_stat.f_iosize;
@@ -671,8 +665,6 @@ cluster_wbuild(vp, size, start_lbn, len)
int totalwritten = 0;
int dbsize = btodb(size);
- if (vp->v_maxio == 0)
- vp->v_maxio = DFLTPHYS;
while (len > 0) {
s = splbio();
if (((tbp = gbincore(vp, start_lbn)) == NULL) ||
OpenPOWER on IntegriCloud