From: Dmitry Torokhov <dtor_core@ameritech.net>
To: Marcel Holtmann <marcel@holtmann.org>
Cc: Greg KH <greg@kroah.com>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Manuel Estrada Sainz <ranty@debian.org>,
Patrick Mochel <mochel@osdl.org>
Subject: Re: [2.6 PATCH/RFC] Firmware loader fixes - take 2 (patch 2/2)
Date: Sat, 27 Dec 2003 00:30:18 -0500 [thread overview]
Message-ID: <200312270030.21195.dtor_core@ameritech.net> (raw)
In-Reply-To: <200312270028.26952.dtor_core@ameritech.net>
===================================================================
ChangeSet@1.1528, 2003-12-25 23:08:12-05:00, dtor_core@ameritech.net
Firmware loader:
- make kobject hotplug mechanism public
- do not call hotplug until firmware class device is completely
instantiated
drivers/base/firmware_class.c | 6 +++++
include/linux/kobject.h | 1
lib/kobject.c | 49 ++++++++++++++++++------------------------
3 files changed, 28 insertions(+), 28 deletions(-)
===================================================================
diff -Nru a/drivers/base/firmware_class.c b/drivers/base/firmware_class.c
--- a/drivers/base/firmware_class.c Sat Dec 27 00:27:38 2003
+++ b/drivers/base/firmware_class.c Sat Dec 27 00:27:38 2003
@@ -25,6 +25,7 @@
#define FW_STATE_LOADED 0
#define FW_STATE_LOADING 1
#define FW_STATE_NEW 2
+#define FW_STATE_READY 3
static int loading_timeout = 10; /* In seconds */
@@ -81,6 +82,9 @@
int i = 0;
char *scratch = buffer;
+ if (fw_priv->state != FW_STATE_READY)
+ return -ENODEV;
+
if (buffer_size < (FIRMWARE_NAME_MAX + 10))
return -ENOMEM;
if (num_envp < 1)
@@ -356,6 +360,7 @@
goto err_out_unregister;
}
+ fw_priv->state = FW_STATE_READY;
*class_dev_p = class_dev;
return 0;
@@ -402,6 +407,7 @@
add_timer(&fw_priv->timeout);
}
+ kobject_hotplug("add", &class_dev->kobj);
wait_for_completion(&fw_priv->completion);
del_timer(&fw_priv->timeout);
diff -Nru a/include/linux/kobject.h b/include/linux/kobject.h
--- a/include/linux/kobject.h Sat Dec 27 00:27:38 2003
+++ b/include/linux/kobject.h Sat Dec 27 00:27:38 2003
@@ -56,6 +56,7 @@
extern struct kobject * kobject_get(struct kobject *);
extern void kobject_put(struct kobject *);
+extern void kobject_hotplug(const char *action, struct kobject *);
struct kobj_type {
void (*release)(struct kobject *);
diff -Nru a/lib/kobject.c b/lib/kobject.c
--- a/lib/kobject.c Sat Dec 27 00:27:38 2003
+++ b/lib/kobject.c Sat Dec 27 00:27:38 2003
@@ -198,9 +198,24 @@
kfree(envp);
return;
}
+
+void kobject_hotplug(const char *action, struct kobject *kobj)
+{
+ struct kobject * top_kobj = kobj;
+
+ /* If this kobj does not belong to a kset,
+ try to find a parent that does. */
+ if (!top_kobj->kset && top_kobj->parent) {
+ do {
+ top_kobj = top_kobj->parent;
+ } while (!top_kobj->kset && top_kobj->parent);
+ }
+
+ if (top_kobj->kset && top_kobj->kset->hotplug_ops)
+ kset_hotplug(action, top_kobj->kset, kobj);
+}
#else
-static void kset_hotplug(const char *action, struct kset *kset,
- struct kobject *kobj)
+void kobject_hotplug(const char *action, struct kobject *kobj)
{
return;
}
@@ -248,7 +263,6 @@
{
int error = 0;
struct kobject * parent;
- struct kobject * top_kobj;
if (!(kobj = kobject_get(kobj)))
return -ENOENT;
@@ -277,18 +291,9 @@
if (parent)
kobject_put(parent);
} else {
- /* If this kobj does not belong to a kset,
- try to find a parent that does. */
- top_kobj = kobj;
- if (!top_kobj->kset && top_kobj->parent) {
- do {
- top_kobj = top_kobj->parent;
- } while (!top_kobj->kset && top_kobj->parent);
- }
-
- if (top_kobj->kset && top_kobj->kset->hotplug_ops)
- kset_hotplug("add", top_kobj->kset, kobj);
+ kobject_hotplug("add", kobj);
}
+
return error;
}
@@ -396,20 +401,7 @@
void kobject_del(struct kobject * kobj)
{
- struct kobject * top_kobj;
-
- /* If this kobj does not belong to a kset,
- try to find a parent that does. */
- top_kobj = kobj;
- if (!top_kobj->kset && top_kobj->parent) {
- do {
- top_kobj = top_kobj->parent;
- } while (!top_kobj->kset && top_kobj->parent);
- }
-
- if (top_kobj->kset && top_kobj->kset->hotplug_ops)
- kset_hotplug("remove", top_kobj->kset, kobj);
-
+ kobject_hotplug("remove", kobj);
sysfs_remove_dir(kobj);
unlink(kobj);
}
@@ -638,6 +630,7 @@
EXPORT_SYMBOL(kobject_unregister);
EXPORT_SYMBOL(kobject_get);
EXPORT_SYMBOL(kobject_put);
+EXPORT_SYMBOL(kobject_hotplug);
EXPORT_SYMBOL(kset_register);
EXPORT_SYMBOL(kset_unregister);
next prev parent reply other threads:[~2003-12-27 5:30 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-12-21 6:37 [2.6 PATCH/RFC] Firmware loader - fix races and resource dealloocation problems Dmitry Torokhov
2003-12-22 9:37 ` Greg KH
2003-12-22 23:42 ` Marcel Holtmann
2003-12-23 3:29 ` Dmitry Torokhov
2003-12-23 8:48 ` Marcel Holtmann
2003-12-27 5:29 ` [2.6 PATCH/RFC] Firmware loader fixes - take 2 Dmitry Torokhov
2003-12-27 5:29 ` [2.6 PATCH/RFC] Firmware loader fixes - take 2 (patch 1/2) Dmitry Torokhov
2003-12-27 5:30 ` Dmitry Torokhov [this message]
2003-12-31 21:31 ` [2.6 PATCH/RFC] Firmware loader fixes - take 2 (patch 2/2) Greg KH
2003-12-31 22:16 ` [2.6 PATCH/RFC] Firmware loader fixes - take 2 (patch 1/2) Manuel Estrada Sainz
2003-12-31 22:32 ` [2.6 PATCH/RFC] Firmware loader - fix races and resource dealloocation problems Manuel Estrada Sainz
2003-12-31 23:03 ` Greg KH
2003-12-22 23:05 ` Manuel Estrada Sainz
2003-12-22 23:22 ` Greg KH
2003-12-26 17:29 ` Manuel Estrada Sainz
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=200312270030.21195.dtor_core@ameritech.net \
--to=dtor_core@ameritech.net \
--cc=greg@kroah.com \
--cc=linux-kernel@vger.kernel.org \
--cc=marcel@holtmann.org \
--cc=mochel@osdl.org \
--cc=ranty@debian.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