public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 19/19] UML - Make mconsole version requests happen in a process
@ 2006-07-07  0:33 Jeff Dike
  2006-07-07 15:31 ` [uml-devel] [PATCH 19/19] UML - Make mconsole version requestshappen " Brock, Anthony - NET
  0 siblings, 1 reply; 5+ messages in thread
From: Jeff Dike @ 2006-07-07  0:33 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, user-mode-linux-devel

Handling a host mconsole version request must be done in a process context
rather than interrupt context now that utsname information can be 
process-specific rather than global.

Signed-off-by: Jeff Dike <jdike@addtoit.com>

Index: linux-2.6.16/arch/um/drivers/mconsole_user.c
===================================================================
--- linux-2.6.16.orig/arch/um/drivers/mconsole_user.c
+++ linux-2.6.16/arch/um/drivers/mconsole_user.c
@@ -18,7 +18,12 @@
 #include "umid.h"
 
 static struct mconsole_command commands[] = {
-	{ "version", mconsole_version, MCONSOLE_INTR },
+	/* With uts namespaces, uts information becomes process-specific, so
+	 * we need a process context.  If we try handling this in interrupt
+	 * context, we may hit an exiting process without a valid uts
+	 * namespace.
+	 */
+	{ "version", mconsole_version, MCONSOLE_PROC },
 	{ "halt", mconsole_halt, MCONSOLE_PROC },
 	{ "reboot", mconsole_reboot, MCONSOLE_PROC },
 	{ "config", mconsole_config, MCONSOLE_PROC },


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-07-07 19:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-07  0:33 [PATCH 19/19] UML - Make mconsole version requests happen in a process Jeff Dike
2006-07-07 15:31 ` [uml-devel] [PATCH 19/19] UML - Make mconsole version requestshappen " Brock, Anthony - NET
2006-07-07 16:58   ` Jeff Dike
2006-07-07 17:07     ` [uml-devel] [PATCH 19/19] UML - Make mconsole versionrequestshappen " Brock, Anthony - NET
2006-07-07 19:58       ` Jeff Dike

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox