Skip to content

Commit

Permalink
um: Add os_warn() for pre-boot warning/error messages
Browse files Browse the repository at this point in the history
Add os_warn() for printing out pre-boot warning/error
messages in stderr. The messages via os_warn() are not
suppressed by quiet option.

Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Richard Weinberger <richard@nod.at>
  • Loading branch information
Masami Hiramatsu authored and Richard Weinberger committed Jul 5, 2017
1 parent d3878bb commit 721ccae
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions arch/um/include/shared/os.h
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,8 @@ extern void um_early_printk(const char *s, unsigned int n);
extern void os_fix_helper_signals(void);
extern void os_info(const char *fmt, ...)
__attribute__ ((format (printf, 1, 2)));
extern void os_warn(const char *fmt, ...)
__attribute__ ((format (printf, 1, 2)));

/* time.c */
extern void os_idle_sleep(unsigned long long nsecs);
Expand Down
9 changes: 9 additions & 0 deletions arch/um/os-Linux/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,3 +177,12 @@ void os_info(const char *fmt, ...)
vfprintf(stderr, fmt, list);
va_end(list);
}

void os_warn(const char *fmt, ...)
{
va_list list;

va_start(list, fmt);
vfprintf(stderr, fmt, list);
va_end(list);
}

0 comments on commit 721ccae

Please sign in to comment.