All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] xen: some debug trace enhancements
@ 2019-03-14  9:37 Juergen Gross
  2019-03-14  9:37 ` [PATCH 1/2] xen/debug: make debugtrace configurable via Kconfig Juergen Gross
  2019-03-14  9:37 ` [PATCH 2/2] xen/debug: make debugtrace more clever regarding repeating entries Juergen Gross
  0 siblings, 2 replies; 11+ messages in thread
From: Juergen Gross @ 2019-03-14  9:37 UTC (permalink / raw)
  To: xen-devel
  Cc: Juergen Gross, Stefano Stabellini, Wei Liu,
	Konrad Rzeszutek Wilk, George Dunlap, Andrew Cooper, Ian Jackson,
	Tim Deegan, Julien Grall, Jan Beulich

While doing some scheduler work I used debug trace for diagnosis of
problems during dom0 boot. This small series is the result of adapting
debug trace to my needs.

Juergen Gross (2):
  xen/debug: make debugtrace configurable via Kconfig
  xen/debug: make debugtrace more clever regarding repeating entries

 xen/Kconfig.debug          |  7 +++++++
 xen/drivers/char/console.c | 46 ++++++++++++++++++++++++++++++++++------------
 xen/include/xen/lib.h      |  3 +--
 3 files changed, 42 insertions(+), 14 deletions(-)

-- 
2.16.4


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 11+ messages in thread
* Re: [PATCH 2/2] xen/debug: make debugtrace more clever regarding repeating entries
@ 2019-03-14 14:36 Juergen Gross
  0 siblings, 0 replies; 11+ messages in thread
From: Juergen Gross @ 2019-03-14 14:36 UTC (permalink / raw)
  To: Jan Beulich
  Cc: Stefano Stabellini, Wei Liu, Konrad Rzeszutek Wilk,
	George Dunlap, Andrew Cooper, Ian Jackson, Tim Deegan,
	Julien Grall, xen-devel

On 14/03/2019 15:31, Jan Beulich wrote:
>>>> On 14.03.19 at 15:28, <jgross@suse.com> wrote:
>> On 14/03/2019 15:14, Jan Beulich wrote:
>>>>>> On 14.03.19 at 14:40, <andrew.cooper3@citrix.com> wrote:
>>>> On 14/03/2019 13:38, Juergen Gross wrote:
>>>>> On 14/03/2019 14:33, Jan Beulich wrote:
>>>>>>>>> On 14.03.19 at 10:37, <jgross@suse.com> wrote:
>>>>>>> --- a/xen/drivers/char/console.c
>>>>>>> +++ b/xen/drivers/char/console.c
>>>>>>> @@ -1225,13 +1225,28 @@ void debugtrace_dump(void)
>>>>>>>      watchdog_enable();
>>>>>>>  }
>>>>>>>  
>>>>>>> +static void debugtrace_add_to_buf(char *buf)
>>>>>>> +{
>>>>>>> +    char *p;
>>>>>>> +
>>>>>>> +    for ( p = buf; *p != '\0'; p++ )
>>>>>>> +    {
>>>>>>> +        debugtrace_buf[debugtrace_prd++] = *p;
>>>>>>> +        /* Always leave a nul byte at the end of the buffer. */
>>>>>>> +        if ( debugtrace_prd == (debugtrace_bytes - 1) )
>>>>>>> +            debugtrace_prd = 0;
>>>>>>> +    }
>>>>>>> +}
>>>>>>> +
>>>>>>>  void debugtrace_printk(const char *fmt, ...)
>>>>>>>  {
>>>>>>> -    static char    buf[1024];
>>>>>>> -    static u32 count;
>>>>>>> +    static char buf[1024];
>>>>>>> +    static char last_buf[1024];
>>>>>>> +    static u32 count, last_count;
>>>>>> Please change to uint32_t or even better simply to unsigned int.
>>>>> Okay.
>>>>>
>>>>>>> @@ -1243,25 +1258,32 @@ void debugtrace_printk(const char *fmt, ...)
>>>>>>>  
>>>>>>>      ASSERT(debugtrace_buf[debugtrace_bytes - 1] == 0);
>>>>>>>  
>>>>>>> -    snprintf(buf, sizeof(buf), "%u ", ++count);
>>>>>>> -
>>>>>>>      va_start(args, fmt);
>>>>>>> -    (void)vsnprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), fmt, args);
>>>>>>> +    (void)vsnprintf(buf, sizeof(buf), fmt, args);
>>>>>> Please take the opportunity and drop the stray cast.
>>>>> Will do.
>>>>
>>>> Both can be done on commit, surely?
>>>
>>> Perhaps, albeit iirc the first would amount to more than just s/u32/.../
>>> on the line in question.
>>
>> What else would you want to do?
> 
> Fold it with the adjacent unsigned int declaration (iirc there was one).

I can post a V3 if you want including the folding.


Juergen

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 11+ messages in thread
[parent not found: <20190314093733.18175*1*jgross@suse.com>]

end of thread, other threads:[~2019-03-14 14:36 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-14  9:37 [PATCH 0/2] xen: some debug trace enhancements Juergen Gross
2019-03-14  9:37 ` [PATCH 1/2] xen/debug: make debugtrace configurable via Kconfig Juergen Gross
2019-03-14 13:26   ` Jan Beulich
2019-03-14  9:37 ` [PATCH 2/2] xen/debug: make debugtrace more clever regarding repeating entries Juergen Gross
2019-03-14 13:33   ` Jan Beulich
     [not found]   ` <5C8A5842020000780021EA3E@suse.com>
2019-03-14 13:38     ` Juergen Gross
2019-03-14 13:40       ` Andrew Cooper
2019-03-14 14:14         ` Jan Beulich
     [not found]         ` <5C8A61CB020000780021EB19@suse.com>
2019-03-14 14:28           ` Juergen Gross
2019-03-14 14:31             ` Jan Beulich
  -- strict thread matches above, loose matches on Subject: below --
2019-03-14 14:36 Juergen Gross
     [not found] <20190314093733.18175*1*jgross@suse.com>

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.