提交 d571cd18 编写于 作者: J Jeff Dike 提交者: Linus Torvalds

[PATCH] uml: Move mconsole support out of generic code

A bit of restructuring which eliminates the all_allowed argument (which is
mconsole-specific) to line_setup.  That logic is moved to the mconsole
callback.
Signed-off-by: NJeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 88890b88
...@@ -500,11 +500,9 @@ void close_lines(struct line *lines, int nlines) ...@@ -500,11 +500,9 @@ void close_lines(struct line *lines, int nlines)
/* Common setup code for both startup command line and mconsole initialization. /* Common setup code for both startup command line and mconsole initialization.
* @lines contains the the array (of size @num) to modify; * @lines contains the the array (of size @num) to modify;
* @init is the setup string; * @init is the setup string;
* @all_allowed is a boolean saying if we can setup the whole @lines */
* at once. For instance, it will be usually true for startup init. (where we
* can use con=xterm) and false for mconsole.*/
int line_setup(struct line *lines, unsigned int num, char *init, int all_allowed) int line_setup(struct line *lines, unsigned int num, char *init)
{ {
int i, n; int i, n;
char *end; char *end;
...@@ -545,11 +543,6 @@ int line_setup(struct line *lines, unsigned int num, char *init, int all_allowed ...@@ -545,11 +543,6 @@ int line_setup(struct line *lines, unsigned int num, char *init, int all_allowed
} }
} }
} }
else if(!all_allowed){
printk("line_setup - can't configure all devices from "
"mconsole\n");
return 0;
}
else { else {
for(i = 0; i < num; i++){ for(i = 0; i < num; i++){
if(lines[i].init_pri <= INIT_ALL){ if(lines[i].init_pri <= INIT_ALL){
...@@ -569,12 +562,18 @@ int line_config(struct line *lines, unsigned int num, char *str) ...@@ -569,12 +562,18 @@ int line_config(struct line *lines, unsigned int num, char *str)
{ {
char *new; char *new;
if(*str == '='){
printk("line_config - can't configure all devices from "
"mconsole\n");
return 1;
}
new = kstrdup(str, GFP_KERNEL); new = kstrdup(str, GFP_KERNEL);
if(new == NULL){ if(new == NULL){
printk("line_config - kstrdup failed\n"); printk("line_config - kstrdup failed\n");
return -ENOMEM; return -ENOMEM;
} }
return !line_setup(lines, num, new, 0); return !line_setup(lines, num, new);
} }
int line_get_config(char *name, struct line *lines, unsigned int num, char *str, int line_get_config(char *name, struct line *lines, unsigned int num, char *str,
...@@ -628,7 +627,7 @@ int line_remove(struct line *lines, unsigned int num, int n) ...@@ -628,7 +627,7 @@ int line_remove(struct line *lines, unsigned int num, int n)
char config[sizeof("conxxxx=none\0")]; char config[sizeof("conxxxx=none\0")];
sprintf(config, "%d=none", n); sprintf(config, "%d=none", n);
return !line_setup(lines, num, config, 0); return !line_setup(lines, num, config);
} }
struct tty_driver *line_register_devfs(struct lines *set, struct tty_driver *line_register_devfs(struct lines *set,
......
...@@ -224,7 +224,7 @@ __uml_exitcall(ssl_exit); ...@@ -224,7 +224,7 @@ __uml_exitcall(ssl_exit);
static int ssl_chan_setup(char *str) static int ssl_chan_setup(char *str)
{ {
return line_setup(serial_lines, ARRAY_SIZE(serial_lines), str, 1); return line_setup(serial_lines, ARRAY_SIZE(serial_lines), str);
} }
__setup("ssl", ssl_chan_setup); __setup("ssl", ssl_chan_setup);
......
...@@ -191,7 +191,7 @@ __uml_exitcall(console_exit); ...@@ -191,7 +191,7 @@ __uml_exitcall(console_exit);
static int console_chan_setup(char *str) static int console_chan_setup(char *str)
{ {
return line_setup(vts, ARRAY_SIZE(vts), str, 1); return line_setup(vts, ARRAY_SIZE(vts), str);
} }
__setup("con", console_chan_setup); __setup("con", console_chan_setup);
__channel_help(console_chan_setup, "con"); __channel_help(console_chan_setup, "con");
...@@ -76,8 +76,8 @@ struct lines { ...@@ -76,8 +76,8 @@ struct lines {
extern void line_close(struct tty_struct *tty, struct file * filp); extern void line_close(struct tty_struct *tty, struct file * filp);
extern int line_open(struct line *lines, struct tty_struct *tty, extern int line_open(struct line *lines, struct tty_struct *tty,
struct chan_opts *opts); struct chan_opts *opts);
extern int line_setup(struct line *lines, unsigned int sizeof_lines, char *init, extern int line_setup(struct line *lines, unsigned int sizeof_lines,
int all_allowed); char *init);
extern int line_write(struct tty_struct *tty, const unsigned char *buf, extern int line_write(struct tty_struct *tty, const unsigned char *buf,
int len); int len);
extern void line_put_char(struct tty_struct *tty, unsigned char ch); extern void line_put_char(struct tty_struct *tty, unsigned char ch);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册