search for: start_of_lin

Displaying 2 results from an estimated 2 matches for "start_of_lin".

Did you mean: start_of_line
2013 Aug 16
7
[PATCH v2] xen/console: buffer and show origin of guest PV writes
...spin_unlock_irq(&console_lock); - guest_handle_add_offset(buffer, kcount); count -= kcount; } @@ -504,12 +547,12 @@ static int printk_prefix_check(char *p, char **pp) ((loglvl < upper_thresh) && printk_ratelimit())); } -static void printk_start_of_line(void) +static void printk_start_of_line(const char *prefix) { struct tm tm; char tstr[32]; - __putstr("(XEN) "); + __putstr(prefix); if ( !opt_console_timestamps ) return; @@ -524,12 +567,11 @@ static void printk_start_of_line(void) __putstr(tstr);...
2013 Sep 09
0
[PATCH v3] xen/console: buffer and show origin of guest PV writes
...spin_unlock_irq(&console_lock); - guest_handle_add_offset(buffer, kcount); count -= kcount; } @@ -504,12 +547,12 @@ static int printk_prefix_check(char *p, char **pp) ((loglvl < upper_thresh) && printk_ratelimit())); } -static void printk_start_of_line(void) +static void printk_start_of_line(const char *prefix) { struct tm tm; char tstr[32]; - __putstr("(XEN) "); + __putstr(prefix); if ( !opt_console_timestamps ) return; @@ -524,12 +567,11 @@ static void printk_start_of_line(void) __putstr(tstr);...