summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Tomasz Napierala <trasz@FreeBSD.org>2009-10-22 16:26:38 +0000
committerEdward Tomasz Napierala <trasz@FreeBSD.org>2009-10-22 16:26:38 +0000
commit1c7deea4370081ab4cba762f18952363bdab1015 (patch)
tree051da6c82e17915d434caf55133c51aea0e394d5
parent8c1851f5a11855415c9e7f68d73828949f6ce4fb (diff)
downloadsrc-test2-1c7deea4370081ab4cba762f18952363bdab1015.tar.gz
src-test2-1c7deea4370081ab4cba762f18952363bdab1015.zip
MFC r196863:
Improve wording. MFC r196941: Prevent the line from wrapping. Approved by: re (kib)
Notes
Notes: svn path=/stable/8/; revision=198368
-rw-r--r--sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c
index df2fc3e01a97..64fded4712ea 100644
--- a/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c
+++ b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c
@@ -3557,15 +3557,19 @@ arc_init(void)
#ifdef __i386__
if (prefetch_tunable_set == 0) {
- printf("ZFS NOTICE: prefetch is disabled by default on i386"
- " - add enable to tunable to change.\n" );
+ printf("ZFS NOTICE: Prefetch is disabled by default on i386 "
+ "-- to enable,\n");
+ printf(" add \"vfs.zfs.prefetch_disable=0\" "
+ "to /boot/loader.conf.\n");
zfs_prefetch_disable=1;
}
#else
if ((((uint64_t)physmem * PAGESIZE) < (1ULL << 32)) &&
prefetch_tunable_set == 0) {
- printf("ZFS NOTICE: system has less than 4GB and prefetch enable is not set"
- "... disabling.\n");
+ printf("ZFS NOTICE: Prefetch is disabled by default if less "
+ "than 4GB of RAM is present;\n"
+ " to enable, add \"vfs.zfs.prefetch_disable=0\" "
+ "to /boot/loader.conf.\n");
zfs_prefetch_disable=1;
}
#endif