From: Faik Uygur <faikuygur@tnn.net>
To: greg@kroah.com
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH] use idr_get_new to allocate a bus id in drivers/i2c/i2c-core.c
Date: Sun, 16 May 2004 01:26:32 +0300 [thread overview]
Message-ID: <20040515222632.GA7218@dsl.ttnet.net.tr> (raw)
Hi,
This patch uses idr_get_new to allocate a bus id while registering
a new adapter.
--- a/drivers/i2c/i2c-core.c Sat May 15 23:19:11 2004
+++ b/drivers/i2c/i2c-core.c Sat May 15 23:19:11 2004
@@ -28,6 +28,7 @@
#include <linux/slab.h>
#include <linux/i2c.h>
#include <linux/init.h>
+#include <linux/idr.h>
#include <linux/seq_file.h>
#include <asm/uaccess.h>
@@ -35,6 +36,7 @@
static LIST_HEAD(adapters);
static LIST_HEAD(drivers);
static DECLARE_MUTEX(core_lists);
+static DEFINE_IDR(i2c_adapter_idr);
int i2c_device_probe(struct device *dev)
{
@@ -113,13 +115,17 @@
*/
int i2c_add_adapter(struct i2c_adapter *adap)
{
- static int nr = 0;
+ int id;
struct list_head *item;
struct i2c_driver *driver;
+ if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
+ return -ENOMEM;
+
down(&core_lists);
- adap->nr = nr++;
+ id = idr_get_new(&i2c_adapter_idr, NULL);
+ adap->nr = id & MAX_ID_MASK;
init_MUTEX(&adap->bus_lock);
init_MUTEX(&adap->clist_lock);
list_add_tail(&adap->list,&adapters);
@@ -207,6 +213,9 @@
/* wait for sysfs to drop all references */
wait_for_completion(&adap->dev_released);
wait_for_completion(&adap->class_dev_released);
+
+ /* free dynamically allocated bus id */
+ idr_remove(&i2c_adapter_idr, adap->nr);
dev_dbg(&adap->dev, "adapter unregistered\n");
next reply other threads:[~2004-05-15 22:27 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-05-15 22:26 Faik Uygur [this message]
2004-05-15 23:58 ` Andrew Morton
2004-05-16 9:13 ` Faik Uygur
2004-05-16 9:36 ` Andrew Morton
2004-05-19 7:07 ` Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20040515222632.GA7218@dsl.ttnet.net.tr \
--to=faikuygur@tnn.net \
--cc=greg@kroah.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®