From: Chuck Ebbert <76306.1226@compuserve.com>
To: Takashi Iwai <tiwai@suse.de>
Cc: Dave Jones <davej@redhat.com>,
alsa-devel <alsa-devel@lists.sourceforge.net>,
linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: list corruption on removal of snd_seq_dummy
Date: Tue, 27 Jun 2006 08:05:01 -0400 [thread overview]
Message-ID: <200606270808_MC3-1-C391-2F33@compuserve.com> (raw)
In-Reply-To: <s5hejxb7xrb.wl%tiwai@suse.de>
On Tue, 27 Jun 2006 11:28:56 +0200, Takashi Iwai wrote:
> > > > The code in question is doing..
> > > >
> > > > __list_add(&deleted_list,
> > > > client->ports_list_head.prev,
> > > > client->ports_list_head.next);
> > > >
> > > > which looks fishy, as those two elements aren't going to be consecutive,
> > > > as __list_add expects.
> > >
> > > I think the code behaves correctly but probably misusing __list_add().
> > > It movies the whole entries from an existing list_head A
> > > (clients->ports_list_head) to a new list_head B (deleted_list).
> > > The above is exapnded:
> > >
> > > A->next->prev = B;
> > > B->next = A->next;
> > > B->prev = A->prev;
> > > A->prev->next = B;
> > >
> > > Any better way to achieve it using standard macros?
> >
> > Why can't you just list_move() the elements ?
>
> No, list_move() can't move the whole elements without loop.
>
> A solution is
>
> list_add(B, A);
> list_del_init(A);
>
> (although this introduces a bit more code :)
Shouldn't it be like this?
ports_list_first = client->ports_list_head.next;
list_del_init(client->ports_list_head);
list_splice(ports_list_first, &deleted_list);
--
Chuck
"You can't read a newspaper if you can't read." --George W. Bush
next reply other threads:[~2006-06-27 12:11 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-06-27 12:05 Chuck Ebbert [this message]
2006-06-27 12:38 ` Takashi Iwai
2006-06-27 16:58 ` Dave Jones
2006-06-27 17:07 ` Takashi Iwai
-- strict thread matches above, loose matches on Subject: below --
2006-06-23 3:15 Dave Jones
2006-06-23 10:47 ` Takashi Iwai
2006-06-27 3:27 ` Dave Jones
2006-06-27 9:28 ` Takashi Iwai
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200606270808_MC3-1-C391-2F33@compuserve.com \
--to=76306.1226@compuserve.com \
--cc=alsa-devel@lists.sourceforge.net \
--cc=davej@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=tiwai@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®