Re: [Qemu-devel] [PATCH 1/6] io: add ability to set a name for IO channels

2016-09-30 Thread Eric Blake
On 09/30/2016 10:16 AM, Daniel P. Berrange wrote: > The GSource object has ability to have a name, which is useful > when debugging performance problems with the mainloop event > callbacks that take too long. By associating a name with an > QIOChannel object, we can then set the name on any GSource

[Qemu-devel] [PATCH 1/6] io: add ability to set a name for IO channels

2016-09-30 Thread Daniel P. Berrange
The GSource object has ability to have a name, which is useful when debugging performance problems with the mainloop event callbacks that take too long. By associating a name with an QIOChannel object, we can then set the name on any GSource associated with the channel. Signed-off-by: Daniel P. Be