From 9321cd0436261240311eaac9aad60ee764e089e6 Mon Sep 17 00:00:00 2001 From: Josef 'Jeff' Sipek Date: Sat, 30 May 2015 11:07:17 -0400 Subject: [PATCH] 5972 kmem: fix comment typo Reviewed by: Marcel Telka Reviewed by: Andy Stormont Approved by: Albert Lee --- usr/src/uts/common/os/kmem.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/src/uts/common/os/kmem.c b/usr/src/uts/common/os/kmem.c index af94c2d16f..cc2f8e7895 100644 --- a/usr/src/uts/common/os/kmem.c +++ b/usr/src/uts/common/os/kmem.c @@ -3171,9 +3171,9 @@ kmem_reap_common(void *flag_arg) /* * It may not be kosher to do memory allocation when a reap is called - * is called (for example, if vmem_populate() is in the call chain). - * So we start the reap going with a TQ_NOALLOC dispatch. If the - * dispatch fails, we reset the flag, and the next reap will try again. + * (for example, if vmem_populate() is in the call chain). So we + * start the reap going with a TQ_NOALLOC dispatch. If the dispatch + * fails, we reset the flag, and the next reap will try again. */ if (!taskq_dispatch(kmem_taskq, kmem_reap_start, flag, TQ_NOALLOC)) *flag = 0; -- 2.11.4.GIT