Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 104761
b: refs/heads/master
c: f75b1c6
h: refs/heads/master
i:
  104759: bb438fb
v: v3
  • Loading branch information
Dave Young authored and Greg Kroah-Hartman committed Jul 22, 2008
1 parent 10dc471 commit 135c90a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 18 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d2a3b9146e4f40c2e872d7567c996ef95083d802
refs/heads/master: f75b1c60fc1e53c4004a79ea0be071aa3318cdcc
4 changes: 2 additions & 2 deletions trunk/drivers/base/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ struct driver_private {
* @class_devices - list of devices associated with this class
* @class_interfaces - list of class_interfaces associated with this class
* @class_dirs - "glue" directory for virtual devices associated with this class
* @class_sem - semaphore to protect the children, devices, and interfaces lists.
* @class_mutex - mutex to protect the children, devices, and interfaces lists.
* @class - pointer back to the struct class that this structure is associated
* with.
*
Expand All @@ -57,7 +57,7 @@ struct class_private {
struct list_head class_devices;
struct list_head class_interfaces;
struct kset class_dirs;
struct semaphore class_sem;
struct mutex class_mutex;
struct class *class;
};
#define to_class(obj) \
Expand Down
23 changes: 12 additions & 11 deletions trunk/drivers/base/class.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include <linux/err.h>
#include <linux/slab.h>
#include <linux/genhd.h>
#include <linux/mutex.h>
#include "base.h"

#define to_class_attr(_attr) container_of(_attr, struct class_attribute, attr)
Expand Down Expand Up @@ -147,7 +148,7 @@ int __class_register(struct class *cls, struct lock_class_key *key)
INIT_LIST_HEAD(&cp->class_devices);
INIT_LIST_HEAD(&cp->class_interfaces);
kset_init(&cp->class_dirs);
init_MUTEX(&cp->class_sem);
__mutex_init(&cp->class_mutex, "struct class mutex", key);
error = kobject_set_name(&cp->class_subsys.kobj, "%s", cls->name);
if (error) {
kfree(cp);
Expand Down Expand Up @@ -281,7 +282,7 @@ char *make_class_name(const char *name, struct kobject *kobj)
* We check the return of @fn each time. If it returns anything
* other than 0, we break out and return that value.
*
* Note, we hold class->class_sem in this function, so it can not be
* Note, we hold class->class_mutex in this function, so it can not be
* re-acquired in @fn, otherwise it will self-deadlocking. For
* example, calls to add or remove class members would be verboten.
*/
Expand All @@ -293,7 +294,7 @@ int class_for_each_device(struct class *class, struct device *start,

if (!class)
return -EINVAL;
down(&class->p->class_sem);
mutex_lock(&class->p->class_mutex);
list_for_each_entry(dev, &class->p->class_devices, node) {
if (start) {
if (start == dev)
Expand All @@ -306,7 +307,7 @@ int class_for_each_device(struct class *class, struct device *start,
if (error)
break;
}
up(&class->p->class_sem);
mutex_unlock(&class->p->class_mutex);

return error;
}
Expand All @@ -329,7 +330,7 @@ EXPORT_SYMBOL_GPL(class_for_each_device);
*
* Note, you will need to drop the reference with put_device() after use.
*
* We hold class->class_sem in this function, so it can not be
* We hold class->class_mutex in this function, so it can not be
* re-acquired in @match, otherwise it will self-deadlocking. For
* example, calls to add or remove class members would be verboten.
*/
Expand All @@ -343,7 +344,7 @@ struct device *class_find_device(struct class *class, struct device *start,
if (!class)
return NULL;

down(&class->p->class_sem);
mutex_lock(&class->p->class_mutex);
list_for_each_entry(dev, &class->p->class_devices, node) {
if (start) {
if (start == dev)
Expand All @@ -357,7 +358,7 @@ struct device *class_find_device(struct class *class, struct device *start,
} else
put_device(dev);
}
up(&class->p->class_sem);
mutex_unlock(&class->p->class_mutex);

return found ? dev : NULL;
}
Expand All @@ -375,13 +376,13 @@ int class_interface_register(struct class_interface *class_intf)
if (!parent)
return -EINVAL;

down(&parent->p->class_sem);
mutex_lock(&parent->p->class_mutex);
list_add_tail(&class_intf->node, &parent->p->class_interfaces);
if (class_intf->add_dev) {
list_for_each_entry(dev, &parent->p->class_devices, node)
class_intf->add_dev(dev, class_intf);
}
up(&parent->p->class_sem);
mutex_unlock(&parent->p->class_mutex);

return 0;
}
Expand All @@ -394,13 +395,13 @@ void class_interface_unregister(struct class_interface *class_intf)
if (!parent)
return;

down(&parent->p->class_sem);
mutex_lock(&parent->p->class_mutex);
list_del_init(&class_intf->node);
if (class_intf->remove_dev) {
list_for_each_entry(dev, &parent->p->class_devices, node)
class_intf->remove_dev(dev, class_intf);
}
up(&parent->p->class_sem);
mutex_unlock(&parent->p->class_mutex);

class_put(parent);
}
Expand Down
9 changes: 5 additions & 4 deletions trunk/drivers/base/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <linux/genhd.h>
#include <linux/kallsyms.h>
#include <linux/semaphore.h>
#include <linux/mutex.h>

#include "base.h"
#include "power/power.h"
Expand Down Expand Up @@ -907,7 +908,7 @@ int device_add(struct device *dev)
klist_add_tail(&dev->knode_parent, &parent->klist_children);

if (dev->class) {
down(&dev->class->p->class_sem);
mutex_lock(&dev->class->p->class_mutex);
/* tie the class to the device */
list_add_tail(&dev->node, &dev->class->p->class_devices);

Expand All @@ -916,7 +917,7 @@ int device_add(struct device *dev)
&dev->class->p->class_interfaces, node)
if (class_intf->add_dev)
class_intf->add_dev(dev, class_intf);
up(&dev->class->p->class_sem);
mutex_unlock(&dev->class->p->class_mutex);
}
Done:
put_device(dev);
Expand Down Expand Up @@ -1017,15 +1018,15 @@ void device_del(struct device *dev)
if (dev->class) {
device_remove_class_symlinks(dev);

down(&dev->class->p->class_sem);
mutex_lock(&dev->class->p->class_mutex);
/* notify any interfaces that the device is now gone */
list_for_each_entry(class_intf,
&dev->class->p->class_interfaces, node)
if (class_intf->remove_dev)
class_intf->remove_dev(dev, class_intf);
/* remove the device from the class list */
list_del_init(&dev->node);
up(&dev->class->p->class_sem);
mutex_unlock(&dev->class->p->class_mutex);
}
device_remove_file(dev, &uevent_attr);
device_remove_attrs(dev);
Expand Down

0 comments on commit 135c90a

Please sign in to comment.