Source-Changes-HG archive

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

[src/trunk]: src/sys/arch The 64MB was intended.



details:   https://anonhg.NetBSD.org/src/rev/4b39c527545c
branches:  trunk
changeset: 817568:4b39c527545c
user:      mlelstv <mlelstv%NetBSD.org@localhost>
date:      Fri Aug 26 05:56:03 2016 +0000

description:
The 64MB was intended.

diffstat:

 sys/arch/arm/include/param.h  |  4 ++--
 sys/arch/i386/include/param.h |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r ff3796e78b04 -r 4b39c527545c sys/arch/arm/include/param.h
--- a/sys/arch/arm/include/param.h      Fri Aug 26 01:31:43 2016 +0000
+++ b/sys/arch/arm/include/param.h      Fri Aug 26 05:56:03 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: param.h,v 1.19 2013/10/26 18:07:52 matt Exp $  */
+/*     $NetBSD: param.h,v 1.20 2016/08/26 05:56:03 mlelstv Exp $       */
 
 /*
  * Copyright (c) 1994,1995 Mark Brinicombe.
@@ -180,7 +180,7 @@
 #define        MCLBYTES        (1 << MCLSHIFT) /* size of a m_buf cluster */
 
 #ifndef NMBCLUSTERS_MAX
-#define        NMBCLUSTERS_MAX (0x2000000 / MCLBYTES)  /* Limit to 64MB for clusters */
+#define        NMBCLUSTERS_MAX (0x4000000 / MCLBYTES)  /* Limit to 64MB for clusters */
 #endif
 
 /*
diff -r ff3796e78b04 -r 4b39c527545c sys/arch/i386/include/param.h
--- a/sys/arch/i386/include/param.h     Fri Aug 26 01:31:43 2016 +0000
+++ b/sys/arch/i386/include/param.h     Fri Aug 26 05:56:03 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: param.h,v 1.78 2015/10/27 22:28:56 mrg Exp $   */
+/*     $NetBSD: param.h,v 1.79 2016/08/26 05:56:03 mlelstv Exp $       */
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -121,7 +121,7 @@
 #define        MCLBYTES        (1 << MCLSHIFT) /* size of a m_buf cluster */
 
 #ifndef NMBCLUSTERS_MAX
-#define        NMBCLUSTERS_MAX (0x2000000 / MCLBYTES)  /* Limit to 64MB for clusters */
+#define        NMBCLUSTERS_MAX (0x4000000 / MCLBYTES)  /* Limit to 64MB for clusters */
 #endif
 
 #ifndef NFS_RSIZE



Home | Main Index | Thread Index | Old Index