[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <200803062223.18857.balajirrao@gmail.com>
Date: Thu, 6 Mar 2008 22:23:18 +0530
From: Balaji Rao <balajirrao@...il.com>
To: gregkh@...e.de
Cc: kvm-devel@...ts.sourceforge.net, linux-kernel@...r.kernel.org
Subject: [PATCH] Mark kobjects as unitialized
Hi greg,
When I remove only the kvm-intel module without removing the kvm module itself, I get an error saying that a kobject is
trying to be reinitialized. Its because of the fact that kvm reuses a kobject in kvm_init when calling sysdev_register.
This patch fixes kobject_cleanup by marking the kobject as uninitialized when we cleanup to allow kobjects to be reused.
Signed-off-by: Balaji Rao <balajirrao@...il.com>
diff --git a/lib/kobject.c b/lib/kobject.c
index 0d03252..fbdefb8 100644
--- a/lib/kobject.c
+++ b/lib/kobject.c
@@ -577,6 +577,9 @@ static void kobject_cleanup(struct kobject *kobj)
pr_debug("kobject: '%s': free name\n", name);
kfree(name);
}
+
+ /* Set the state to uninitialized */
+ kobj->state_initialized = 0;
}
static void kobject_release(struct kref *kref)
--
regards,
balaji rao
3rd year, Dept. of Mechanical Engineering,
National Institute of Technology, Karnataka
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists