Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1225409
| From | Lee Duncan <lduncan@suse.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 05/17] Update the md driver to use idr helper functions. |
| Date | 2015-09-15 18:50 +0200 |
| Message-ID | <q91AC-24K-13@gated-at.bofh.it> (permalink) |
| References | <q91AC-24K-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Signed-off-by: Lee Duncan <lduncan@suse.com>
---
drivers/md/dm.c | 22 +++++-----------------
1 file changed, 5 insertions(+), 17 deletions(-)
diff --git a/drivers/md/dm.c b/drivers/md/dm.c
index f331d888e7f5..53d6895eb13d 100644
--- a/drivers/md/dm.c
+++ b/drivers/md/dm.c
@@ -2202,9 +2202,7 @@ static int dm_any_congested(void *congested_data, int bdi_bits)
*---------------------------------------------------------------*/
static void free_minor(int minor)
{
- spin_lock(&_minor_lock);
- idr_remove(&_minor_idr, minor);
- spin_unlock(&_minor_lock);
+ idr_put_index(&_minor_idr, &_minor_lock, minor);
}
/*
@@ -2217,13 +2215,8 @@ static int specific_minor(int minor)
if (minor >= (1 << MINORBITS))
return -EINVAL;
- idr_preload(GFP_KERNEL);
- spin_lock(&_minor_lock);
-
- r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
-
- spin_unlock(&_minor_lock);
- idr_preload_end();
+ r = idr_get_index_in_range(&_minor_idr, &_minor_lock, MINOR_ALLOCED,
+ minor, minor + 1);
if (r < 0)
return r == -ENOSPC ? -EBUSY : r;
return 0;
@@ -2233,13 +2226,8 @@ static int next_free_minor(int *minor)
{
int r;
- idr_preload(GFP_KERNEL);
- spin_lock(&_minor_lock);
-
- r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
-
- spin_unlock(&_minor_lock);
- idr_preload_end();
+ r = idr_get_index_in_range(&_minor_idr, &_minor_lock, MINOR_ALLOCED,
+ 0, 1 << MINORBITS);
if (r < 0)
return r;
*minor = r;
--
2.1.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 05/17] Update the md driver to use idr helper functions. Lee Duncan <lduncan@suse.com> - 2015-09-15 18:50 +0200
Re: [PATCH 05/17] Update the md driver to use idr helper functions. Mike Snitzer <snitzer@redhat.com> - 2015-09-15 20:10 +0200
Re: [PATCH 05/17] Update the md driver to use idr helper functions. Lee Duncan <lduncan@suse.com> - 2015-09-17 23:00 +0200
csiph-web