lkml.org 
[lkml]   [2006]   [Jul]   [5]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
/
DateTue, 4 Jul 2006 23:12:40 -0700
From"Paul E. McKenney" <>
SubjectRe: [PATCH] RCU Documentation
On Tue, Jul 04, 2006 at 05:22:22PM +0200, Urs Thuermann wrote:
> Updater should use _rcu variant of list_del().
> 
> urs

Good catch!!!

Acked-by: Paul E. McKenney <paulmck@us.ibm.com>
> Signed-off-by: Urs Thuermann <urs@isnogud.escape.de>
> 
> --- linux-2.6.17/Documentation/RCU/whatisRCU.txt.orig
> +++ linux-2.6.17/Documentation/RCU/whatisRCU.txt
> @@ -677,8 +677,9 @@
>  	+	spin_lock(&listmutex);
>  		list_for_each_entry(p, head, lp) {
>  			if (p->key == key) {
> -				list_del(&p->list);
> +	-			list_del(&p->list);
>  	-			write_unlock(&listmutex);
> +	+			list_del_rcu(&p->list);
>  	+			spin_unlock(&listmutex);
>  	+			synchronize_rcu();
>  				kfree(p);
> @@ -726,7 +727,7 @@
>   5   write_lock(&listmutex);            5   spin_lock(&listmutex);
>   6   list_for_each_entry(p, head, lp) { 6   list_for_each_entry(p, head, lp) {
>   7     if (p->key == key) {             7     if (p->key == key) {
> - 8       list_del(&p->list);            8       list_del(&p->list);
> + 8       list_del(&p->list);            8       list_del_rcu(&p->list);
>   9       write_unlock(&listmutex);      9       spin_unlock(&listmutex);
>                                         10       synchronize_rcu();
>  10       kfree(p);                     11       kfree(p);
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2006-07-05 06:15    [from the cache]
©2003-2008