Re: [PATCH 12/13] alsa: use list_move() instead of list_del()/list_add() combination

From: Takashi Iwai
Date: Wed Mar 16 2011 - 02:50:14 EST


At Wed, 16 Mar 2011 00:53:24 +0200,
Kirill A. Shutemov wrote:
>
> Signed-off-by: Kirill A. Shutemov <kirill@xxxxxxxxxxxxx>
> Cc: Jaroslav Kysela <perex@xxxxxxxx>
> Cc: Takashi Iwai <tiwai@xxxxxxx>
> Cc: alsa-devel@xxxxxxxxxxxxxxxx

Thanks, applied now.


Takashi

> ---
> sound/pci/ctxfi/ctvmem.c | 3 +--
> 1 files changed, 1 insertions(+), 2 deletions(-)
>
> diff --git a/sound/pci/ctxfi/ctvmem.c b/sound/pci/ctxfi/ctvmem.c
> index 65da6e4..b78f3fc 100644
> --- a/sound/pci/ctxfi/ctvmem.c
> +++ b/sound/pci/ctxfi/ctvmem.c
> @@ -52,8 +52,7 @@ get_vm_block(struct ct_vm *vm, unsigned int size)
>
> if (entry->size == size) {
> /* Move the vm node from unused list to used list directly */
> - list_del(&entry->list);
> - list_add(&entry->list, &vm->used);
> + list_move(&entry->list, &vm->used);
> vm->size -= size;
> block = entry;
> goto out;
> --
> 1.7.4.1
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/