summaryrefslogtreecommitdiff
path: root/usr/src/uts/common
diff options
context:
space:
mode:
authorJason King <jason.brian.king@gmail.com>2021-11-16 18:55:58 -0600
committerJason King <jason.brian.king@gmail.com>2022-01-24 11:56:51 -0600
commit2b91c4a58ba8e370434f09715e0270ff57ca30e3 (patch)
tree34907f534be74b3f1e31d18a8665d108a07738c0 /usr/src/uts/common
parent772eca3305893e0fc7b9c13ec6a1a6df72251dbd (diff)
downloadillumos-gate-2b91c4a58ba8e370434f09715e0270ff57ca30e3.tar.gz
14143 kmem should learn we are no longer Solaris
Reviewed by: Peter Tribble <peter.tribble@gmail.com> Reviewed by: Andy Fiddaman <andy@omnios.org> Reviewed by: Yuri Pankov <ypankov@tintri.com> Approved by: Garrett D'Amore <garrett@damore.org>
Diffstat (limited to 'usr/src/uts/common')
-rw-r--r--usr/src/uts/common/os/kmem.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/usr/src/uts/common/os/kmem.c b/usr/src/uts/common/os/kmem.c
index 207d529146..e01be96775 100644
--- a/usr/src/uts/common/os/kmem.c
+++ b/usr/src/uts/common/os/kmem.c
@@ -4462,8 +4462,7 @@ kmem_init(void)
if (((kmem_flags & ~(KMF_AUDIT | KMF_DEADBEEF | KMF_REDZONE |
KMF_CONTENTS | KMF_LITE)) != 0) ||
((kmem_flags & KMF_LITE) && kmem_flags != KMF_LITE))
- cmn_err(CE_WARN, "kmem_flags set to unsupported value 0x%x. "
- "See the Solaris Tunable Parameters Reference Manual.",
+ cmn_err(CE_WARN, "kmem_flags set to unsupported value 0x%x.",
kmem_flags);
#ifdef DEBUG
@@ -4481,8 +4480,7 @@ kmem_init(void)
(kmem_flags & (KMF_AUDIT | KMF_DEADBEEF)) != 0)
cmn_err(CE_WARN, "High-overhead kmem debugging features "
"enabled (kmem_flags = 0x%x). Performance degradation "
- "and large memory overhead possible. See the Solaris "
- "Tunable Parameters Reference Manual.", kmem_flags);
+ "and large memory overhead possible.", kmem_flags);
#endif /* not DEBUG */
kmem_cache_applyall(kmem_cache_magazine_enable, NULL, TQ_SLEEP);