qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v2 1/5] qxl: switch qxl.c to trace-events


From: Gerd Hoffmann
Subject: Re: [Qemu-devel] [PATCH v2 1/5] qxl: switch qxl.c to trace-events
Date: Tue, 13 Mar 2012 10:47:54 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.1) Gecko/20120216 Thunderbird/10.0.1

  Hi,

> What about having the frequent (read: too frequent to use stderr to dump
> them since they clutter the screen, unless you 'stop' before each
> monitor command) have a postfix "_freq"? This is a stopgap, but helpful
> one, you can then do:
> trace-event qxl* on
> trace-event qxl*freq off
> 
> Instead of remembering / having conveniently ready a longer list:
> trace-event qxl* on
> trace-event qxl_interface_get_command_enter off
> trace-event qxl_interface_release_resource off
> trace-event qxl_interface_get_command_ret off
> trace-event qxl_push_free_res off

Hmm, I'd suggest to just try find better names.  These all are about
ring management (well, free_res is a bit special, but still ...), so maybe:

qxl_ring_{command,cursor}_check  (check whenever stuff is in there)
qxl_ring_{command,cursor}_get    (take item out of the ring)
qxl_ring_res_put                 (stuff item into the ring)

Then you can match them likewise easy with "qxl_ring_*", but you have
descriptive names without the IMHO ugly _freq suffix.

cheers,
  Gerd




reply via email to

[Prev in Thread] Current Thread [Next in Thread]