diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/um/defconfig | 2 | ||||
-rw-r--r-- | arch/um/drivers/mconsole_kern.c | 23 |
2 files changed, 10 insertions, 15 deletions
diff --git a/arch/um/defconfig b/arch/um/defconfig index ed3196d8c908..658f65446c56 100644 --- a/arch/um/defconfig +++ b/arch/um/defconfig | |||
@@ -80,7 +80,7 @@ CONFIG_BINFMT_MISC=m | |||
80 | # CONFIG_HOSTFS is not set | 80 | # CONFIG_HOSTFS is not set |
81 | # CONFIG_HPPFS is not set | 81 | # CONFIG_HPPFS is not set |
82 | CONFIG_MCONSOLE=y | 82 | CONFIG_MCONSOLE=y |
83 | # CONFIG_MAGIC_SYSRQ is not set | 83 | CONFIG_MAGIC_SYSRQ=y |
84 | CONFIG_NEST_LEVEL=0 | 84 | CONFIG_NEST_LEVEL=0 |
85 | # CONFIG_HIGHMEM is not set | 85 | # CONFIG_HIGHMEM is not set |
86 | CONFIG_KERNEL_STACK_ORDER=0 | 86 | CONFIG_KERNEL_STACK_ORDER=0 |
diff --git a/arch/um/drivers/mconsole_kern.c b/arch/um/drivers/mconsole_kern.c index 5f6dbb148218..642bee2eeaf5 100644 --- a/arch/um/drivers/mconsole_kern.c +++ b/arch/um/drivers/mconsole_kern.c | |||
@@ -632,10 +632,9 @@ struct mconsole_output { | |||
632 | static DEFINE_SPINLOCK(client_lock); | 632 | static DEFINE_SPINLOCK(client_lock); |
633 | static LIST_HEAD(clients); | 633 | static LIST_HEAD(clients); |
634 | static char console_buf[MCONSOLE_MAX_DATA]; | 634 | static char console_buf[MCONSOLE_MAX_DATA]; |
635 | static int console_index = 0; | ||
636 | 635 | ||
637 | static void console_write(struct console *console, const char *string, | 636 | static void console_write(struct console *console, const char *string, |
638 | unsigned len) | 637 | unsigned int len) |
639 | { | 638 | { |
640 | struct list_head *ele; | 639 | struct list_head *ele; |
641 | int n; | 640 | int n; |
@@ -643,24 +642,18 @@ static void console_write(struct console *console, const char *string, | |||
643 | if (list_empty(&clients)) | 642 | if (list_empty(&clients)) |
644 | return; | 643 | return; |
645 | 644 | ||
646 | while (1) { | 645 | while (len > 0) { |
647 | n = min((size_t) len, ARRAY_SIZE(console_buf) - console_index); | 646 | n = min((size_t) len, ARRAY_SIZE(console_buf)); |
648 | strncpy(&console_buf[console_index], string, n); | 647 | strncpy(console_buf, string, n); |
649 | console_index += n; | ||
650 | string += n; | 648 | string += n; |
651 | len -= n; | 649 | len -= n; |
652 | if (len == 0) | ||
653 | return; | ||
654 | 650 | ||
655 | list_for_each(ele, &clients) { | 651 | list_for_each(ele, &clients) { |
656 | struct mconsole_output *entry; | 652 | struct mconsole_output *entry; |
657 | 653 | ||
658 | entry = list_entry(ele, struct mconsole_output, list); | 654 | entry = list_entry(ele, struct mconsole_output, list); |
659 | mconsole_reply_len(entry->req, console_buf, | 655 | mconsole_reply_len(entry->req, console_buf, n, 0, 1); |
660 | console_index, 0, 1); | ||
661 | } | 656 | } |
662 | |||
663 | console_index = 0; | ||
664 | } | 657 | } |
665 | } | 658 | } |
666 | 659 | ||
@@ -690,8 +683,7 @@ static void with_console(struct mc_request *req, void (*proc)(void *), | |||
690 | 683 | ||
691 | (*proc)(arg); | 684 | (*proc)(arg); |
692 | 685 | ||
693 | mconsole_reply_len(req, console_buf, console_index, 0, 0); | 686 | mconsole_reply_len(req, "", 0, 0, 0); |
694 | console_index = 0; | ||
695 | 687 | ||
696 | spin_lock_irqsave(&client_lock, flags); | 688 | spin_lock_irqsave(&client_lock, flags); |
697 | list_del(&entry.list); | 689 | list_del(&entry.list); |
@@ -699,6 +691,9 @@ static void with_console(struct mc_request *req, void (*proc)(void *), | |||
699 | } | 691 | } |
700 | 692 | ||
701 | #ifdef CONFIG_MAGIC_SYSRQ | 693 | #ifdef CONFIG_MAGIC_SYSRQ |
694 | |||
695 | #include <linux/sysrq.h> | ||
696 | |||
702 | static void sysrq_proc(void *arg) | 697 | static void sysrq_proc(void *arg) |
703 | { | 698 | { |
704 | char *op = arg; | 699 | char *op = arg; |