2004-09-17 10:17:55

by Kohei KaiGai

[permalink] [raw]
Subject: [PATCH] list_replace_rcu() in include/linux/list.h

Hi Andrew.

* list_replace_rcu-2.6.9-rc2.patch
This attached patch adds list_replace_rcu() to include/linux/list.h
for atomic updating operations according to RCU-model.

void list_replace_rcu(struct list_head *old, struct list_head *new)

The 'old' element is detached from the linked list, and the 'new'
element is inserted to the same point of the linked list concurrently.

This patch is necessary for the performance improvement of SELinux.
See, http://lkml.org/lkml/2004/8/16/54
(Subject: RCU issue with SELinux)
http://lkml.org/lkml/2004/8/30/63
(Subject: [PATCH]SELinux performance improvement by RCU)

Please apply.

Signed-off-by: KaiGai, Kohei <[email protected]>
--------
Kai Gai <[email protected]>


--- linux-2.6.9-rc2/include/linux/list.h 2004-09-13 14:32:48.000000000 +0900
+++ linux-2.6.9-rc2.rcu/include/linux/list.h 2004-09-16 14:53:39.000000000 +0900
@@ -194,8 +194,23 @@
__list_del(entry->prev, entry->next);
entry->prev = LIST_POISON2;
}

+/*
+ * list_replace_rcu - replace old entry by new onw from list
+ * @old : the element to be replaced from the list.
+ * @new : the new element to insert to the list.
+ *
+ * The old entry will be replaced to the new entry atomically.
+ */
+static inline void list_replace_rcu(struct list_head *old, struct list_head *new){
+ new->next = old->next;
+ new->prev = old->prev;
+ smp_wmb();
+ new->next->prev = new;
+ new->prev->next = new;
+}
+
/**
* list_del_init - deletes entry from list and reinitialize it.
* @entry: the element to delete from the list.
*/


2004-09-17 10:39:31

by Dipankar Sarma

[permalink] [raw]
Subject: Re: [PATCH] list_replace_rcu() in include/linux/list.h

On Fri, Sep 17, 2004 at 07:19:42PM +0900, Kaigai Kohei wrote:
> Hi Andrew.
>
> +/*
> + * list_replace_rcu - replace old entry by new onw from list

Apart from the spelling mistake in this line, it looks good. In fact,
the whole selinux scalability work is really important and I hope will
go to mainline soon.

Thanks
Dipankar

2004-09-17 15:49:45

by Paul E. McKenney

[permalink] [raw]
Subject: Re: [PATCH] list_replace_rcu() in include/linux/list.h

On Fri, Sep 17, 2004 at 04:14:10PM +0530, Dipankar Sarma wrote:
> On Fri, Sep 17, 2004 at 07:19:42PM +0900, Kaigai Kohei wrote:
> > Hi Andrew.
> >
> > +/*
> > + * list_replace_rcu - replace old entry by new onw from list
>
> Apart from the spelling mistake in this line, it looks good. In fact,
> the whole selinux scalability work is really important and I hope will
> go to mainline soon.

What he said! ;-)

The patch looks good to me, and the improved selinux scalability is
quite valuable.

Thanx, Paul