[PATCH] kobject_hotplug() should use kobject_name()

kobject: kobject_hotplug should use kobject_name() instead of
         accessing kobj->name directly since for objects with
         long names it can contain garbage.

Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Dmitry Torokhov 2005-04-26 02:29:58 -05:00 committed by Greg Kroah-Hartman
parent 8b22c249e7
commit eb11d8ffce
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ void kobject_hotplug(struct kobject *kobj, enum kobject_action action)
if (hotplug_ops->name)
name = hotplug_ops->name(kset, kobj);
if (name == NULL)
name = kset->kobj.name;
name = kobject_name(&kset->kobj);
argv [0] = hotplug_path;
argv [1] = name;