Skip to content

Commit

Permalink
taskstats: add_del_listener() shouldn't use the wrong node
Browse files Browse the repository at this point in the history
1. Commit 26c4cae "don't allow duplicate entries in listener mode"
   changed add_del_listener(REGISTER) so that "next_cpu:" can reuse the
   listener allocated for the previous cpu, this doesn't look exactly
   right even if minor.

   Change the code to kfree() in the already-registered case, this case
   is unlikely anyway so the extra kmalloc_node() shouldn't hurt but
   looke more correct and clean.

2. use the plain list_for_each_entry() instead of _safe() to scan
   listeners->list.

3. Remove the unneeded INIT_LIST_HEAD(&s->list), we are going to
   list_add(&s->list).

Signed-off-by: Oleg Nesterov <[email protected]>
Reviewed-by: Vasiliy Kulikov <[email protected]>
Cc: Balbir Singh <[email protected]>
Reviewed-by: Jerome Marchand <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
oleg-nesterov authored and torvalds committed Aug 4, 2011
1 parent 12b3e03 commit dfc428b
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions kernel/taskstats.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,30 +291,28 @@ static int add_del_listener(pid_t pid, const struct cpumask *mask, int isadd)
if (!cpumask_subset(mask, cpu_possible_mask))
return -EINVAL;

s = NULL;
if (isadd == REGISTER) {
for_each_cpu(cpu, mask) {
if (!s)
s = kmalloc_node(sizeof(struct listener),
GFP_KERNEL, cpu_to_node(cpu));
s = kmalloc_node(sizeof(struct listener),
GFP_KERNEL, cpu_to_node(cpu));
if (!s)
goto cleanup;

s->pid = pid;
INIT_LIST_HEAD(&s->list);
s->valid = 1;

listeners = &per_cpu(listener_array, cpu);
down_write(&listeners->sem);
list_for_each_entry_safe(s2, tmp, &listeners->list, list) {
list_for_each_entry(s2, &listeners->list, list) {
if (s2->pid == pid)
goto next_cpu;
goto exists;
}
list_add(&s->list, &listeners->list);
s = NULL;
next_cpu:
exists:
up_write(&listeners->sem);
kfree(s); /* nop if NULL */
}
kfree(s);
return 0;
}

Expand Down

0 comments on commit dfc428b

Please sign in to comment.