gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / arch / um / kernel / kmsg_dump.c
blobe4abac6c9727cc274647b47da116c1dfeae4e6d8
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/kmsg_dump.h>
3 #include <linux/console.h>
4 #include <shared/init.h>
5 #include <shared/kern.h>
6 #include <os.h>
8 static void kmsg_dumper_stdout(struct kmsg_dumper *dumper,
9 enum kmsg_dump_reason reason)
11 static char line[1024];
12 struct console *con;
13 size_t len = 0;
15 /* only dump kmsg when no console is available */
16 if (!console_trylock())
17 return;
19 for_each_console(con)
20 break;
22 console_unlock();
24 if (con)
25 return;
27 printf("kmsg_dump:\n");
28 while (kmsg_dump_get_line(dumper, true, line, sizeof(line), &len)) {
29 line[len] = '\0';
30 printf("%s", line);
34 static struct kmsg_dumper kmsg_dumper = {
35 .dump = kmsg_dumper_stdout
38 int __init kmsg_dumper_stdout_init(void)
40 return kmsg_dump_register(&kmsg_dumper);
43 __uml_postsetup(kmsg_dumper_stdout_init);