mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: JustMan <justman@e1.bmstu.ru>
To: linux-kernel@vger.kernel.org
Subject: [PATCH 2.6.11] fix: drivers/base/class.c
Date: Thu, 10 Mar 2005 15:08:56 +0300	[thread overview]
Message-ID: <200503101508.56696.justman@e1.bmstu.ru> (raw)

fix: drivers/base/class.c

Signed-off-by: Serge A. Suchkov <justman@e1.bmstu.ru>

diff -uNrp linux/drivers/base/class.orig.c  linux/drivers/base/class.c
--- linux/drivers/base/class.orig.c 2005-03-10 12:19:00.000000000 +0300
+++ linux/drivers/base/class.c 2005-03-10 13:59:27.000000000 +0300
@@ -307,12 +307,14 @@ static int class_hotplug(struct kset *ks
  if (class_dev->dev) {
   /* add physical device, backing this device  */
   struct device *dev = class_dev->dev;
-  char *path = kobject_get_path(&dev->kobj, GFP_KERNEL);
 
-  add_hotplug_env_var(envp, num_envp, &i, buffer, buffer_size,
-        &length, "PHYSDEVPATH=%s", path);
-  kfree(path);
+  if(kobject_name(&dev->kobj)) {
+   char *path = kobject_get_path(&dev->kobj, GFP_KERNEL);
 
+   add_hotplug_env_var(envp, num_envp, &i, buffer, buffer_size,
+        &length, "PHYSDEVPATH=%s", path);
+   kfree(path);
+  }
   /* add bus name of physical device */
   if (dev->bus)
    add_hotplug_env_var(envp, num_envp, &i,

-- 
Regards, JustMan.

             reply	other threads:[~2005-03-10 12:09 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-03-10 12:08 JustMan [this message]
2005-03-10 15:28 ` Greg KH
2005-03-11  5:30   ` JustMan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200503101508.56696.justman@e1.bmstu.ru \
    --to=justman@e1.bmstu.ru \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®