[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v4 3/4] xen: refactor debugtrace data
On 05.09.19 12:06, Jan Beulich wrote: On 04.09.2019 15:46, Juergen Gross wrote:--- a/xen/common/debugtrace.c +++ b/xen/common/debugtrace.c @@ -15,35 +15,41 @@ #include <xen/watchdog.h>/* Send output direct to console, or buffer it? */-static volatile int debugtrace_send_to_console; +static volatile bool debugtrace_send_to_console;-static char *debugtrace_buf; /* Debug-trace buffer */-static unsigned int debugtrace_prd; /* Producer index */ -static unsigned int debugtrace_prd_last; -static unsigned int debugtrace_kilobytes = 128, debugtrace_bytes; -static unsigned int debugtrace_used; +struct debugtrace_data { + unsigned long bytes; /* Size of buffer. */ + unsigned long prd; /* Producer index. */ + unsigned long prd_last;I'd still like this change from int to long mentioned / justified in the description. With this Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx> Okay, thanks. Juergen _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |