Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/sys/arch/vax/vsa pullup-1-6 ticket #783, chuck@research...



details:   https://anonhg.NetBSD.org/src/rev/7a5e85cb4b2a
branches:  netbsd-1-6
changeset: 529085:7a5e85cb4b2a
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Wed Sep 18 19:32:06 2002 +0000

description:
pullup-1-6 ticket #783, chuck%research.att.com@localhost.

1.24 -> 1.25 syssrc/sys/arch/vax/vsa/asc_vsbus.c

Original log message:
increase sc_maxxfer from 63K to 64K.   otherwise fsck fails for
file systems with larger block sizes.

diffstat:

 sys/arch/vax/vsa/asc_vsbus.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r aac3263cc640 -r 7a5e85cb4b2a sys/arch/vax/vsa/asc_vsbus.c
--- a/sys/arch/vax/vsa/asc_vsbus.c      Tue Sep 17 13:39:22 2002 +0000
+++ b/sys/arch/vax/vsa/asc_vsbus.c      Wed Sep 18 19:32:06 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: asc_vsbus.c,v 1.24 2001/05/16 05:36:56 matt Exp $      */
+/*     $NetBSD: asc_vsbus.c,v 1.24.18.1 2002/09/18 19:32:06 thorpej Exp $      */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -40,7 +40,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: asc_vsbus.c,v 1.24 2001/05/16 05:36:56 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: asc_vsbus.c,v 1.24.18.1 2002/09/18 19:32:06 thorpej Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -300,7 +300,7 @@
         * 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 */
 



Home | Main Index | Thread Index | Old Index