forked from luck/tmp_suning_uos_patched
84f48d4f2b
Locking fixes. Locking was totally lacking for the mconsole_devices, which got a spin lock, and the unplugged pages data, which got a mutex. The locking of the mconsole console output code was confused. Now, the console_lock (renamed to client_lock) protects the clients list. Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
41 lines
878 B
C
41 lines
878 B
C
/*
|
|
* Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
|
|
* Licensed under the GPL
|
|
*/
|
|
|
|
#include "linux/init.h"
|
|
#include "mconsole_kern.h"
|
|
|
|
#ifdef CONFIG_MCONSOLE
|
|
|
|
extern int gdb_config(char *str, char **error_out);
|
|
extern int gdb_remove(int n, char **error_out);
|
|
|
|
static struct mc_device gdb_mc = {
|
|
.list = INIT_LIST_HEAD(gdb_mc.list),
|
|
.name = "gdb",
|
|
.config = gdb_config,
|
|
.remove = gdb_remove,
|
|
};
|
|
|
|
int gdb_mc_init(void)
|
|
{
|
|
mconsole_register_dev(&gdb_mc);
|
|
return(0);
|
|
}
|
|
|
|
__initcall(gdb_mc_init);
|
|
|
|
#endif
|
|
|
|
/*
|
|
* Overrides for Emacs so that we follow Linus's tabbing style.
|
|
* Emacs will notice this stuff at the end of the file and automatically
|
|
* adjust the settings for this buffer only. This must remain at the end
|
|
* of the file.
|
|
* ---------------------------------------------------------------------------
|
|
* Local variables:
|
|
* c-file-style: "linux"
|
|
* End:
|
|
*/
|