Module Name: src
Committed By: mlelstv
Date: Fri Aug 26 05:56:03 UTC 2016
Modified Files:
src/sys/arch/arm/include: param.h
src/sys/arch/i386/include: param.h
Log Message:
The 64MB was intended.
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/arm/include/param.h
cvs rdiff -u -r1.78 -r1.79 src/sys/arch/i386/include/param.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/include/param.h
diff -u src/sys/arch/arm/include/param.h:1.19 src/sys/arch/arm/include/param.h:1.20
--- src/sys/arch/arm/include/param.h:1.19 Sat Oct 26 18:07:52 2013
+++ src/sys/arch/arm/include/param.h Fri Aug 26 05:56:03 2016
@@ -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
/*
Index: src/sys/arch/i386/include/param.h
diff -u src/sys/arch/i386/include/param.h:1.78 src/sys/arch/i386/include/param.h:1.79
--- src/sys/arch/i386/include/param.h:1.78 Tue Oct 27 22:28:56 2015
+++ src/sys/arch/i386/include/param.h Fri Aug 26 05:56:03 2016
@@ -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