diff options
author | Hugh Graham <hugh@cvs.openbsd.org> | 2002-09-18 09:49:24 +0000 |
---|---|---|
committer | Hugh Graham <hugh@cvs.openbsd.org> | 2002-09-18 09:49:24 +0000 |
commit | f7674e880d5806962a33e81ba3dbc832cd772020 (patch) | |
tree | 52fb88ce08b469065d80059afadefc98ab1d937d /sys/arch/vax | |
parent | 356ec7224636adc5d512d3a4d70bc032d01fb76a (diff) |
From NetBSD and in line with recent local changes:
: date: 2002/09/13 03:00:18; author: chuck; state: Exp; lines: +3 -3
: increase sc_maxxfer from 63K to 64K. otherwise fsck fails for
: file systems with larger block sizes.
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/vsa/asc_vsbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/vsa/asc_vsbus.c b/sys/arch/vax/vsa/asc_vsbus.c index 00ffed74ce3..7af06497102 100644 --- a/sys/arch/vax/vsa/asc_vsbus.c +++ b/sys/arch/vax/vsa/asc_vsbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: asc_vsbus.c,v 1.4 2001/08/25 13:33:37 hugh Exp $ */ +/* $OpenBSD: asc_vsbus.c,v 1.5 2002/09/18 09:49:23 hugh Exp $ */ /* $NetBSD: asc_vsbus.c,v 1.22 2001/02/04 20:36:32 ragge Exp $ */ /*- @@ -317,7 +317,7 @@ asc_vsbus_attach(struct device *parent, struct device *self, void *aux) * formula: 4 * period = (1000 / freq) * 4 */ sc->sc_minsync = (1000 / sc->sc_freq); - sc->sc_maxxfer = 63 * 1024; + sc->sc_maxxfer = 64 * 1024; printf("\n%s", self->dv_xname); /* Pretty print */ |