diff options
author | Oleg Nesterov <oleg@tv-sign.ru> | 2006-12-06 23:36:50 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 11:39:34 -0500 |
commit | 128fb95650b3273a8dc9ba5514b6fe7db8ea30bf (patch) | |
tree | 82e8070451edbd7421b6176083658f5f2b997b58 /kernel/taskstats.c | |
parent | 38da288b8ba2b07b4e07165027e650b61d7c8ffc (diff) |
[PATCH] taskstats_exit_alloc: optimize/simplify
If there are no listeners, every task does unneeded kmem_cache alloc/free on
exit. We don't need listeners->sem for 'if (!list_empty())' check. Yes, we may
have a false positive, but this doesn't differ from the case when the listener
is unregistered after we drop the semaphore. So we don't need to do allocation
beforehand.
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Cc: Balbir Singh <balbir@in.ibm.com>
Acked-by: Shailabh Nagar <nagar@watson.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/taskstats.c')
-rw-r--r-- | kernel/taskstats.c | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/kernel/taskstats.c b/kernel/taskstats.c index f5f92014ae98..d9d7c3576238 100644 --- a/kernel/taskstats.c +++ b/kernel/taskstats.c | |||
@@ -416,7 +416,6 @@ err: | |||
416 | void taskstats_exit_alloc(struct taskstats **ptidstats, unsigned int *mycpu) | 416 | void taskstats_exit_alloc(struct taskstats **ptidstats, unsigned int *mycpu) |
417 | { | 417 | { |
418 | struct listener_list *listeners; | 418 | struct listener_list *listeners; |
419 | struct taskstats *tmp; | ||
420 | /* | 419 | /* |
421 | * This is the cpu on which the task is exiting currently and will | 420 | * This is the cpu on which the task is exiting currently and will |
422 | * be the one for which the exit event is sent, even if the cpu | 421 | * be the one for which the exit event is sent, even if the cpu |
@@ -424,19 +423,11 @@ void taskstats_exit_alloc(struct taskstats **ptidstats, unsigned int *mycpu) | |||
424 | */ | 423 | */ |
425 | *mycpu = raw_smp_processor_id(); | 424 | *mycpu = raw_smp_processor_id(); |
426 | 425 | ||
427 | *ptidstats = NULL; | ||
428 | tmp = kmem_cache_zalloc(taskstats_cache, GFP_KERNEL); | ||
429 | if (!tmp) | ||
430 | return; | ||
431 | |||
432 | listeners = &per_cpu(listener_array, *mycpu); | 426 | listeners = &per_cpu(listener_array, *mycpu); |
433 | down_read(&listeners->sem); | 427 | |
434 | if (!list_empty(&listeners->list)) { | 428 | *ptidstats = NULL; |
435 | *ptidstats = tmp; | 429 | if (!list_empty(&listeners->list)) |
436 | tmp = NULL; | 430 | *ptidstats = kmem_cache_zalloc(taskstats_cache, GFP_KERNEL); |
437 | } | ||
438 | up_read(&listeners->sem); | ||
439 | kfree(tmp); | ||
440 | } | 431 | } |
441 | 432 | ||
442 | /* Send pid data out on exit */ | 433 | /* Send pid data out on exit */ |