projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d53233
)
dm: don't use idr_remove_all()
author
Tejun Heo
<tj@kernel.org>
Thu, 28 Feb 2013 01:03:41 +0000
(17:03 -0800)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Thu, 28 Feb 2013 03:10:13 +0000
(19:10 -0800)
idr_destroy() can destroy idr by itself and idr_remove_all() is being
deprecated. Drop its usage.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Alasdair Kergon <agk@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/md/dm.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/md/dm.c
b/drivers/md/dm.c
index 314a0e2faf79d6c097e7c1201bf25af8600baaf6..9ffa7467d270046075d1fe7bb62556e63987d616 100644
(file)
--- a/
drivers/md/dm.c
+++ b/
drivers/md/dm.c
@@
-318,7
+318,6
@@
static void __exit dm_exit(void)
/*
* Should be empty by this point.
*/
- idr_remove_all(&_minor_idr);
idr_destroy(&_minor_idr);
}