VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Tejun Heo <tj@kernel.org> 2013-02-27 17:03:45 -0800 committer: Linus Torvalds <torvalds@linux-foundation.org> 2013-02-27 19:10:13 -0800 commit: a67a380e6f8534b9fed3b3b663d108bf35af0132 parent: cda95406c8fe491c01b3abc422c25a613e9f36ea
Commit Summary:
dlm: don't use idr_remove_all()
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/dlm/recover.c b/fs/dlm/recover.c
index b2856e701641..236d1085d6a2 100644
--- a/fs/dlm/recover.c
+++ b/fs/dlm/recover.c
@@ -359,13 +359,13 @@ static void recover_idr_clear(struct dlm_ls *ls)
 	spin_lock(&ls->ls_recover_idr_lock);
 
 	idr_for_each_entry(&ls->ls_recover_idr, r, id) {
+		idr_remove(&ls->ls_recover_idr, id);
 		r->res_id = 0;
 		r->res_recover_locks_count = 0;
 		ls->ls_recover_list_count--;
 
 		dlm_put_rsb(r);
 	}
-	idr_remove_all(&ls->ls_recover_idr);
 
 	if (ls->ls_recover_list_count != 0) {
 		log_error(ls, "warning: recover_list_count %d",