summaryrefslogtreecommitdiffstats
path: root/arch/m68k/sun3
diff options
context:
space:
mode:
authorAkinobu Mita2006-06-26 09:24:39 +0200
committerLinus Torvalds2006-06-26 18:58:17 +0200
commita7addcea6ac7c0e9733a48cda06ca0880f116a48 (patch)
tree5d18b98798c98dd2c044f4a9ed9c7b372c599a9c /arch/m68k/sun3
parent[PATCH] use list_add_tail() instead of list_add() (diff)
downloadkernel-qcow2-linux-a7addcea6ac7c0e9733a48cda06ca0880f116a48.tar.gz
kernel-qcow2-linux-a7addcea6ac7c0e9733a48cda06ca0880f116a48.tar.xz
kernel-qcow2-linux-a7addcea6ac7c0e9733a48cda06ca0880f116a48.zip
[PATCH] arch: use list_move()
This patch converts the combination of list_del(A) and list_add(A, B) to list_move(A, B) under arch/. Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: "David S. Miller" <davem@davemloft.net> Signed-off-by: Akinobu Mita <mita@miraclelinux.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/m68k/sun3')
-rw-r--r--arch/m68k/sun3/sun3dvma.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/m68k/sun3/sun3dvma.c b/arch/m68k/sun3/sun3dvma.c
index f04a1d25f1a2..97c7bfde8ae8 100644
--- a/arch/m68k/sun3/sun3dvma.c
+++ b/arch/m68k/sun3/sun3dvma.c
@@ -119,8 +119,7 @@ static inline int refill(void)
if(hole->end == prev->start) {
hole->size += prev->size;
hole->end = prev->end;
- list_del(&(prev->list));
- list_add(&(prev->list), &hole_cache);
+ list_move(&(prev->list), &hole_cache);
ret++;
}
@@ -182,8 +181,7 @@ static inline unsigned long get_baddr(int len, unsigned long align)
#endif
return hole->end;
} else if(hole->size == newlen) {
- list_del(&(hole->list));
- list_add(&(hole->list), &hole_cache);
+ list_move(&(hole->list), &hole_cache);
dvma_entry_use(hole->start) = newlen;
#ifdef DVMA_DEBUG
dvma_allocs++;