Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1225416 > unrolled thread
| Started by | Lee Duncan <lduncan@suse.com> |
|---|---|
| First post | 2015-09-15 18:50 +0200 |
| Last post | 2015-09-15 18:50 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 07/17] Update the memstick driver to use idr helper functions. Lee Duncan <lduncan@suse.com> - 2015-09-15 18:50 +0200
| From | Lee Duncan <lduncan@suse.com> |
|---|---|
| Date | 2015-09-15 18:50 +0200 |
| Subject | [PATCH 07/17] Update the memstick driver to use idr helper functions. |
| Message-ID | <q91AD-24K-29@gated-at.bofh.it> |
Signed-off-by: Lee Duncan <lduncan@suse.com>
---
drivers/memstick/core/memstick.c | 19 ++++---------------
1 file changed, 4 insertions(+), 15 deletions(-)
diff --git a/drivers/memstick/core/memstick.c b/drivers/memstick/core/memstick.c
index a0547dbf9806..8f40a3d5108b 100644
--- a/drivers/memstick/core/memstick.c
+++ b/drivers/memstick/core/memstick.c
@@ -512,25 +512,16 @@ int memstick_add_host(struct memstick_host *host)
{
int rc;
- idr_preload(GFP_KERNEL);
- spin_lock(&memstick_host_lock);
-
- rc = idr_alloc(&memstick_host_idr, host, 0, 0, GFP_NOWAIT);
- if (rc >= 0)
- host->id = rc;
-
- spin_unlock(&memstick_host_lock);
- idr_preload_end();
+ rc = idr_get_index(&memstick_host_idr, &memstick_host_lock, host);
if (rc < 0)
return rc;
+ host->id = rc;
dev_set_name(&host->dev, "memstick%u", host->id);
rc = device_add(&host->dev);
if (rc) {
- spin_lock(&memstick_host_lock);
- idr_remove(&memstick_host_idr, host->id);
- spin_unlock(&memstick_host_lock);
+ idr_put_index(&memstick_host_idr, &memstick_host_lock, host->id);
return rc;
}
@@ -554,9 +545,7 @@ void memstick_remove_host(struct memstick_host *host)
host->set_param(host, MEMSTICK_POWER, MEMSTICK_POWER_OFF);
mutex_unlock(&host->lock);
- spin_lock(&memstick_host_lock);
- idr_remove(&memstick_host_idr, host->id);
- spin_unlock(&memstick_host_lock);
+ idr_put_index(&memstick_host_idr, &memstick_host_lock, host->id);
device_del(&host->dev);
}
EXPORT_SYMBOL(memstick_remove_host);
--
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 top | Article view | linux.kernel
csiph-web