[Qemu-discuss] which guest sent io request?!

2016-01-25 Thread Ata Fatahi baarzi
hi all is there any way to find which guest(vm) sent a typicall io request in qemu source code? and does qemu care about which guest or vm sent io request or just process that io request? -- Best Regrads Ata Fatahi Baarzi

Re: [Qemu-discuss] which guest sent io request?!

2016-01-25 Thread Jakob Bohm
On 25/01/2016 19:38, Ata Fatahi baarzi wrote: hi all is there any way to find which guest(vm) sent a typicall io request in qemu source code? and does qemu care about which guest or vm sent io request or just process that io request? Because there is (at least) one qemu process per guest and

Re: [Qemu-discuss] which guest sent io request?!

2016-01-25 Thread Ata Fatahi baarzi
thank you dear, so is there an identifier, something like guest_id in source code to find it each time which guest is getting service? On Tue, Jan 26, 2016 at 1:11 AM, Jakob Bohm wrote: > On 25/01/2016 19:38, Ata Fatahi baarzi wrote: > > hi all > is there any way to find which guest(vm) sent a t

Re: [Qemu-discuss] which guest sent io request?!

2016-01-26 Thread Jakob Bohm
Every single variable and other state in the process pertains only to this one Guest. Some of the things that code could look at: The Process ID of the qemu process, this is unique even if two copies of the same guest is started at the same time from the exact same virtual hard drive etc. etc.