[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20100526163227.GA17043@linux-mips.org>
Date: Wed, 26 May 2010 17:32:27 +0100
From: Ralf Baechle <ralf@...ux-mips.org>
To: Julia Lawall <julia@...u.dk>,
"Kevin D. Kissell" <kevink@...alogos.com>
Cc: linux-mips@...ux-mips.org, linux-kernel@...r.kernel.org,
kernel-janitors@...r.kernel.org
Subject: Re: [PATCH 3/17] arch/mips/kernel: Add missing read_unlock
On Wed, May 26, 2010 at 05:54:55PM +0200, Julia Lawall wrote:
> From: Julia Lawall <julia@...u.dk>
>
> Add a read_unlock missing on the error path. Other ways of reaching
> out_unlock have tasklist_lock unlocked.
>
> The semantic match that finds this problem is as follows:
> (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @@
> expression E1;
> @@
>
> * read_lock(E1,...);
> <+... when != E1
> if (...) {
> ... when != E1
> * return ...;
> }
> ...+>
> * read_unlock(E1,...);
> // </smpl>
>
> Signed-off-by: Julia Lawall <julia@...u.dk>
>
> ---
> I wasn't able to find what security_task_setscheduler actually does.
> If it releases tasklist_lock in an error case, then ignire this patch.
Your patch appears correct - and mipsmt_sys_sched_setaffinity() even
more broken than you thought. It duplicates some code from kernel/sched.c
and has gotten out of sync.
Fixing that up.
Ralf
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists