Re: [patch 4/9] oom: Add missing rcu protection of __task_cred() in dump_tasks

From: David Howells
Date: Fri Dec 11 2009 - 08:50:59 EST


Thomas Gleixner <tglx@xxxxxxxxxxxxx> wrote:

> + /* Protect __task_cred() access */
> + rcu_read_lock();
> printk(KERN_INFO "[%5d] %5d %5d %8lu %8lu %3d %3d %s\n",
> p->pid, __task_cred(p)->uid, p->tgid, mm->total_vm,
> get_mm_rss(mm), (int)task_cpu(p), p->signal->oom_adj,
> p->comm);
> + rcu_read_unlock();

No. If there's only one access to __task_cred() like this, use
task_cred_xxx() or one of its wrappers instead:

- p->pid, __task_cred(p)->uid, p->tgid, mm->total_vm,
+ p->pid, task_uid(p), p->tgid, mm->total_vm,

that limits the size of the critical section.

David
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/