Commit 550d6da2 authored by Wei Yongjun's avatar Wei Yongjun Committed by Dave Kleikamp

JFS: use list_move instead of list_del/list_add

Using list_move() instead of list_del() + list_add().

spatch with a semantic match is used to found this problem.
(http://coccinelle.lip6.fr/)
Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatarDave Kleikamp <dave.kleikamp@oracle.com>
parent 16221d90
...@@ -2977,11 +2977,8 @@ int jfs_sync(void *arg) ...@@ -2977,11 +2977,8 @@ int jfs_sync(void *arg)
* put back on the anon_list. * put back on the anon_list.
*/ */
/* Take off anon_list */ /* Move from anon_list to anon_list2 */
list_del(&jfs_ip->anon_inode_list); list_move(&jfs_ip->anon_inode_list,
/* Put on anon_list2 */
list_add(&jfs_ip->anon_inode_list,
&TxAnchor.anon_list2); &TxAnchor.anon_list2);
TXN_UNLOCK(); TXN_UNLOCK();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment