[PATCH] uml: audio driver locking
authorJeff Dike <[email protected]>
Sat, 10 Feb 2007 09:43:59 +0000 (01:43 -0800)
committerLinus Torvalds <[email protected]>
Sun, 11 Feb 2007 18:51:21 +0000 (10:51 -0800)
Comment the lack of locking and make a couple of variables static.

Signed-off-by: Jeff Dike <[email protected]>
Cc: Paolo 'Blaisorblade' Giarrusso <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
arch/um/drivers/hostaudio_kern.c

index a0d148ea63d6bfa7b8bf8a1ffaceeff6b72ad477..f61fa05622027886106b2dfc1023af95c70a3a51 100644 (file)
@@ -25,9 +25,12 @@ struct hostmixer_state {
 #define HOSTAUDIO_DEV_DSP "/dev/sound/dsp"
 #define HOSTAUDIO_DEV_MIXER "/dev/sound/mixer"
 
-/* Only changed from linux_main at boot time */
-char *dsp = HOSTAUDIO_DEV_DSP;
-char *mixer = HOSTAUDIO_DEV_MIXER;
+/* Changed either at boot time or module load time.  At boot, this is
+ * single-threaded; at module load, multiple modules would each have
+ * their own copy of these variables.
+ */
+static char *dsp = HOSTAUDIO_DEV_DSP;
+static char *mixer = HOSTAUDIO_DEV_MIXER;
 
 #define DSP_HELP \
 "    This is used to specify the host dsp device to the hostaudio driver.\n" \