Re: [PATCH] JFS: use list_move instead of list_del/list_add

2012-09-17 Thread Dave Kleikamp
Meant to reply earlier. I've sent this to linux-next and will target for the next mainline merge window. Thanks, Shaggy On 09/06/2012 02:33 AM, Wei Yongjun wrote: > From: Wei Yongjun > > Using list_move() instead of list_del() + list_add(). > > spatch with a semantic match is used to found thi

[PATCH] JFS: use list_move instead of list_del/list_add

2012-09-06 Thread Wei Yongjun
From: Wei Yongjun 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: Wei Yongjun --- fs/jfs/jfs_txnmgr.c | 9 +++-- 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/fs/j