kobjects: fix up improper use of the kobject name field
A number of different drivers incorrect access the kobject name field directly. This is not correct as the name might not be in the array. Use the proper accessor function instead.
This commit is contained in:
@ -1013,7 +1013,7 @@ again:
|
||||
goto again;
|
||||
}
|
||||
|
||||
new_dentry = lookup_one_len(kobj->name, new_parent, strlen(kobj->name));
|
||||
new_dentry = lookup_one_len(kobject_name(kobj), new_parent, strlen(kobject_name(kobj)));
|
||||
if (IS_ERR(new_dentry)) {
|
||||
error = PTR_ERR(new_dentry);
|
||||
goto out_unlock;
|
||||
|
Reference in New Issue
Block a user