Commit 25fdeb3f authored by Ingo Oeser's avatar Ingo Oeser Committed by Greg Kroah-Hartman

kobject: Replace ALL occurrences of '/' with '!' instead of only the first one.

A recent patch from Kay Sievers <kay.sievers@vrfy.org>
replaced the first occurrence of '/' with '!' as needed for block devices.

Now do some cheap defensive coding and replace all of them to avoid future
issues in this area.
Signed-off-by: default avatarIngo Oeser <ioe-lkml@rameria.de>
Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 6a55617e
...@@ -223,8 +223,7 @@ static int kobject_set_name_vargs(struct kobject *kobj, const char *fmt, ...@@ -223,8 +223,7 @@ static int kobject_set_name_vargs(struct kobject *kobj, const char *fmt,
return -ENOMEM; return -ENOMEM;
/* ewww... some of these buggers have '/' in the name ... */ /* ewww... some of these buggers have '/' in the name ... */
s = strchr(kobj->name, '/'); while ((s = strchr(kobj->name, '/')))
if (s)
s[0] = '!'; s[0] = '!';
kfree(old_name); kfree(old_name);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment