Bug #5972
kmem: 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;
Updated by Electric Monk over 5 years ago
- Status changed from New to Closed
- % Done changed from 80 to 100
git commit 9321cd0436261240311eaac9aad60ee764e089e6
commit 9321cd0436261240311eaac9aad60ee764e089e6 Author: Josef 'Jeff' Sipek <jeffpc@josefsipek.net> Date: 2015-06-19T06:47:51.000Z 5972 kmem: fix comment typo Reviewed by: Marcel Telka <marcel@telka.sk> Reviewed by: Andy Stormont <astormont@racktopsystems.com> Approved by: Albert Lee <trisk@omniti.com>