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/sun2/include Pullup (via patch from fredette)
details: https://anonhg.NetBSD.org/src/rev/56afa08f108f
branches: netbsd-1-6
changeset: 531063:56afa08f108f
user: jmc <jmc%NetBSD.org@localhost>
date: Wed Jan 28 04:44:29 2004 +0000
description:
Pullup (via patch from fredette)
Identical to pullup 1453 for sun3. Clips MAXPHYS to 32k on sun2, as needed by the sc driver.
diffstat:
sys/arch/sun2/include/param.h | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diffs (18 lines):
diff -r c1dfe1adc56b -r 56afa08f108f sys/arch/sun2/include/param.h
--- a/sys/arch/sun2/include/param.h Thu Jan 08 17:10:40 2004 +0000
+++ b/sys/arch/sun2/include/param.h Wed Jan 28 04:44:29 2004 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.3 2001/05/14 20:35:58 fredette Exp $ */
+/* $NetBSD: param.h,v 1.3.18.1 2004/01/28 04:44:29 jmc Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -109,5 +109,8 @@
#define delay(us) _delay((us)<<8)
#define DELAY(n) delay(n)
+#undef MAXPHYS
+#define MAXPHYS (32 * 1024) /* max raw I/O transfer size */
+
#endif /* _KERNEL && !_LOCORE */
#endif /* !_MACHINE_PARAM_H_ */
Home |
Main Index |
Thread Index |
Old Index