Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 75874
b: refs/heads/master
c: 63b6971
h: refs/heads/master
v: v3
  • Loading branch information
Cornelia Huck authored and Greg Kroah-Hartman committed Jan 25, 2008
1 parent b41f5da commit 6935adb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 16 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: 4f0146919be6bff47b5ea97252bcec0286e4dd19
refs/heads/master: 63b6971a0876b744e2fcf3c9df15d130501e1deb
29 changes: 14 additions & 15 deletions trunk/drivers/base/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,8 @@ static struct kobject *get_device_parent(struct device *dev,
}

static inline void cleanup_device_parent(struct device *dev) {}
static inline void cleanup_glue_dir(struct device *dev,
struct kobject *glue_dir) {}
#else
static struct kobject *virtual_device_parent(struct device *dev)
{
Expand Down Expand Up @@ -616,27 +618,27 @@ static struct kobject *get_device_parent(struct device *dev,
return NULL;
}

static void cleanup_device_parent(struct device *dev)
static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
{
struct kobject *glue_dir = dev->kobj.parent;

/* see if we live in a "glue" directory */
if (!dev->class || glue_dir->kset != &dev->class->class_dirs)
return;

kobject_put(glue_dir);
}

static void cleanup_device_parent(struct device *dev)
{
cleanup_glue_dir(dev, dev->kobj.parent);
}
#endif

static int setup_parent(struct device *dev, struct device *parent)
static void setup_parent(struct device *dev, struct device *parent)
{
struct kobject *kobj;
kobj = get_device_parent(dev, parent);
if (IS_ERR(kobj))
return PTR_ERR(kobj);
if (kobj)
dev->kobj.parent = kobj;
return 0;
}

static int device_add_class_symlinks(struct device *dev)
Expand Down Expand Up @@ -784,9 +786,7 @@ int device_add(struct device *dev)
pr_debug("device: '%s': %s\n", dev->bus_id, __FUNCTION__);

parent = get_device(dev->parent);
error = setup_parent(dev, parent);
if (error)
goto Error;
setup_parent(dev, parent);

/* first, register with generic layer. */
error = kobject_add(&dev->kobj, dev->kobj.parent, "%s", dev->bus_id);
Expand Down Expand Up @@ -864,6 +864,7 @@ int device_add(struct device *dev)
kobject_uevent(&dev->kobj, KOBJ_REMOVE);
kobject_del(&dev->kobj);
Error:
cleanup_device_parent(dev);
if (parent)
put_device(parent);
goto Done;
Expand Down Expand Up @@ -1344,15 +1345,12 @@ int device_move(struct device *dev, struct device *new_parent)

new_parent = get_device(new_parent);
new_parent_kobj = get_device_parent (dev, new_parent);
if (IS_ERR(new_parent_kobj)) {
error = PTR_ERR(new_parent_kobj);
put_device(new_parent);
goto out;
}

pr_debug("device: '%s': %s: moving to '%s'\n", dev->bus_id,
__FUNCTION__, new_parent ? new_parent->bus_id : "<NULL>");
error = kobject_move(&dev->kobj, new_parent_kobj);
if (error) {
cleanup_glue_dir(dev, new_parent_kobj);
put_device(new_parent);
goto out;
}
Expand All @@ -1375,6 +1373,7 @@ int device_move(struct device *dev, struct device *new_parent)
klist_add_tail(&dev->knode_parent,
&old_parent->klist_children);
}
cleanup_glue_dir(dev, new_parent_kobj);
put_device(new_parent);
goto out;
}
Expand Down

0 comments on commit 6935adb

Please sign in to comment.