mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 06:01:23 +00:00
[PATCH] core: use list_move()
This patch converts the combination of list_del(A) and list_add(A, B) to list_move(A, B). Cc: Greg Kroah-Hartman <gregkh@suse.de> Cc: Ram Pai <linuxram@us.ibm.com> Signed-off-by: Akinobu Mita <mita@miraclelinux.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
a7addcea6a
commit
1bfba4e8ea
8 changed files with 22 additions and 38 deletions
|
@ -522,8 +522,7 @@ void shrink_dcache_sb(struct super_block * sb)
|
|||
dentry = list_entry(tmp, struct dentry, d_lru);
|
||||
if (dentry->d_sb != sb)
|
||||
continue;
|
||||
list_del(tmp);
|
||||
list_add(tmp, &dentry_unused);
|
||||
list_move(tmp, &dentry_unused);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue