Actions
Bug #5972
closedkmem: fix comment typo
Start date:
2015-05-30
Due date:
% Done:
100%
Estimated time:
Difficulty:
Bite-size
Tags:
needs-triage
Gerrit CR:
Description
diff --git a/usr/src/uts/common/os/kmem.c b/usr/src/uts/common/os/kmem.c index af94c2d..cc2f8e7 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;
Actions