* [listll] Fix fetching of head->first in lockless lists.
@ 2011-08-04 14:45 Christoph Lameter
2011-08-04 15:17 ` Mathieu Desnoyers
0 siblings, 1 reply; 4+ messages in thread
From: Christoph Lameter @ 2011-08-04 14:45 UTC (permalink / raw)
To: Huang Ying; +Cc: Andi Kleen, Mathieu Desnoyers, linux-kernel
The fetching of head->first must occur in the cmpxchg loop.
With the current code head->first may change after the content were assigned to
the "entry" variable. Entry then not be change anymore in the loop and be
used as old_entry for the cmpxchg. The cmpxchg will then therefore
compare "entry" to list->head. This will always fail if list->head has
changed. The restarting of the loop will not fetch head->first again. So
we could have a hang there.
I guess this only works now because the compiler optimizations pull
the fetching of head->first into the loop.
Signed-off-by: Christoph Lameter <cl@linux.com>
---
lib/llist.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
Index: linux-2.6/lib/llist.c
===================================================================
--- linux-2.6.orig/lib/llist.c 2011-08-04 09:34:30.000000000 -0500
+++ linux-2.6/lib/llist.c 2011-08-04 09:35:08.000000000 -0500
@@ -42,8 +42,8 @@ void llist_add(struct llist_node *new, s
BUG_ON(in_nmi());
#endif
- entry = head->first;
do {
+ entry = head->first;
old_entry = entry;
new->next = entry;
cpu_relax();
@@ -66,8 +66,8 @@ void llist_add_batch(struct llist_node *
BUG_ON(in_nmi());
#endif
- entry = head->first;
do {
+ entry = head->first;
old_entry = entry;
new_last->next = entry;
cpu_relax();
@@ -97,8 +97,8 @@ struct llist_node *llist_del_first(struc
BUG_ON(in_nmi());
#endif
- entry = head->first;
do {
+ entry = head->first;
if (entry == NULL)
return NULL;
old_entry = entry;
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [listll] Fix fetching of head->first in lockless lists.
2011-08-04 14:45 [listll] Fix fetching of head->first in lockless lists Christoph Lameter
@ 2011-08-04 15:17 ` Mathieu Desnoyers
2011-08-04 15:25 ` Christoph Lameter
0 siblings, 1 reply; 4+ messages in thread
From: Mathieu Desnoyers @ 2011-08-04 15:17 UTC (permalink / raw)
To: Christoph Lameter; +Cc: Huang Ying, Andi Kleen, linux-kernel
* Christoph Lameter (cl@linux.com) wrote:
>
> The fetching of head->first must occur in the cmpxchg loop.
>
> With the current code head->first may change after the content were assigned to
> the "entry" variable. Entry then not be change anymore in the loop and be
> used as old_entry for the cmpxchg. The cmpxchg will then therefore
> compare "entry" to list->head. This will always fail if list->head has
> changed. The restarting of the loop will not fetch head->first again. So
> we could have a hang there.
>
> I guess this only works now because the compiler optimizations pull
> the fetching of head->first into the loop.
Hi Christoph,
The cmpxchg re-fetch the head->first (this is its return value). The:
} while ((entry = cmpxchg(&head->first, old_entry, new)) != old_entry);
Takes care of the re-read and populating "entry" with an updated value.
So the patch you propose here is useless.
Thanks,
Mathieu
>
> Signed-off-by: Christoph Lameter <cl@linux.com>
>
> ---
> lib/llist.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> Index: linux-2.6/lib/llist.c
> ===================================================================
> --- linux-2.6.orig/lib/llist.c 2011-08-04 09:34:30.000000000 -0500
> +++ linux-2.6/lib/llist.c 2011-08-04 09:35:08.000000000 -0500
> @@ -42,8 +42,8 @@ void llist_add(struct llist_node *new, s
> BUG_ON(in_nmi());
> #endif
>
> - entry = head->first;
> do {
> + entry = head->first;
> old_entry = entry;
> new->next = entry;
> cpu_relax();
> @@ -66,8 +66,8 @@ void llist_add_batch(struct llist_node *
> BUG_ON(in_nmi());
> #endif
>
> - entry = head->first;
> do {
> + entry = head->first;
> old_entry = entry;
> new_last->next = entry;
> cpu_relax();
> @@ -97,8 +97,8 @@ struct llist_node *llist_del_first(struc
> BUG_ON(in_nmi());
> #endif
>
> - entry = head->first;
> do {
> + entry = head->first;
> if (entry == NULL)
> return NULL;
> old_entry = entry;
--
Mathieu Desnoyers
Operating System Efficiency R&D Consultant
EfficiOS Inc.
http://www.efficios.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [listll] Fix fetching of head->first in lockless lists.
2011-08-04 15:17 ` Mathieu Desnoyers
@ 2011-08-04 15:25 ` Christoph Lameter
2011-08-04 15:26 ` Christoph Lameter
0 siblings, 1 reply; 4+ messages in thread
From: Christoph Lameter @ 2011-08-04 15:25 UTC (permalink / raw)
To: Mathieu Desnoyers; +Cc: Huang Ying, Andi Kleen, linux-kernel
On Thu, 4 Aug 2011, Mathieu Desnoyers wrote:
> * Christoph Lameter (cl@linux.com) wrote:
> >
> > The fetching of head->first must occur in the cmpxchg loop.
> >
> > With the current code head->first may change after the content were assigned to
> > the "entry" variable. Entry then not be change anymore in the loop and be
> > used as old_entry for the cmpxchg. The cmpxchg will then therefore
> > compare "entry" to list->head. This will always fail if list->head has
> > changed. The restarting of the loop will not fetch head->first again. So
> > we could have a hang there.
> >
> > I guess this only works now because the compiler optimizations pull
> > the fetching of head->first into the loop.
>
> Hi Christoph,
>
> The cmpxchg re-fetch the head->first (this is its return value). The:
>
> } while ((entry = cmpxchg(&head->first, old_entry, new)) != old_entry);
>
> Takes care of the re-read and populating "entry" with an updated value.
I know but that is not the problem.
The code does not refetch the contents in old_entry (which got its value
from entry which was obtained before the loop was entered!). So Old entry
is constant even after a cmpxchg has failed. If head->first has changed
then we will repeatedly comparing the new value to "old_entry" (aka
"entry") as it was before the loop was entered.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [listll] Fix fetching of head->first in lockless lists.
2011-08-04 15:25 ` Christoph Lameter
@ 2011-08-04 15:26 ` Christoph Lameter
0 siblings, 0 replies; 4+ messages in thread
From: Christoph Lameter @ 2011-08-04 15:26 UTC (permalink / raw)
To: Mathieu Desnoyers; +Cc: Huang Ying, Andi Kleen, linux-kernel
Argh. I see it now. Missed the assignment in the while condition.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-08-04 15:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-04 14:45 [listll] Fix fetching of head->first in lockless lists Christoph Lameter
2011-08-04 15:17 ` Mathieu Desnoyers
2011-08-04 15:25 ` Christoph Lameter
2011-08-04 15:26 ` Christoph Lameter
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.