* [Qemu-devel] Again about SMP-host supporting
@ 2008-06-18 20:49 Георгий Войт
2008-06-22 8:23 ` [Qemu-devel] " Георгий Войт
0 siblings, 1 reply; 6+ messages in thread
From: Георгий Войт @ 2008-06-18 20:49 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 702 bytes --]
At first:
Dear Developers!!! You make great and very usable solution! Very big
thx!!!!!!!!!!!!
So:
I have a question:
is there in roadmap/TODO some plans about old (or not very old)
SMP-hosts supporting? I mean - will qemu work not only on one core/CPU
without HW acceleration (kvm) ??? Can you make for each virtual CPU
standalone qemu thread? 1 VurtualCPU - 1 qemu host thread; 2 VurtualCPU - 2
qemu host threads; etc ? I have P3 SMP machine, so it without intel VT
technology on each CPU, so i can run qemu only on one CPU and KVM module
can't be inseted... :(
So, could you say me something about it?
George.
[-- Attachment #2: Type: text/html, Size: 1171 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Qemu-devel] Re: Again about SMP-host supporting
2008-06-18 20:49 [Qemu-devel] Again about SMP-host supporting Георгий Войт
@ 2008-06-22 8:23 ` Георгий Войт
2008-06-22 16:07 ` Andreas Färber
2008-06-22 18:30 ` Георгий Войт
0 siblings, 2 replies; 6+ messages in thread
From: Георгий Войт @ 2008-06-22 8:23 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 842 bytes --]
2008/6/19 Георгий Войт <goshila@gmail.com>:
> At first:
> Dear Developers!!! You make great and very usable solution! Very big
> thx!!!!!!!!!!!!
> So:
> I have a question:
> is there in roadmap/TODO some plans about old (or not very old)
> SMP-hosts supporting? I mean - will qemu work not only on one core/CPU
> without HW acceleration (like kvm) ??? Can you make for each virtual CPU
> standalone qemu thread? 1 VurtualCPU - 1 qemu host thread; 2 VurtualCPU - 2
> qemu host threads; etc ? I have P3 SMP machine, so it without intel VT
> technology on each CPU, so i can run qemu only on one CPU and KVM module
> can't be inserted... :(
> So, could you say me something about it?
> George.
>
COULD SOMEONE SAY ME SOMETHING ABOUT IT?
[-- Attachment #2: Type: text/html, Size: 1600 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Re: Again about SMP-host supporting
2008-06-22 8:23 ` [Qemu-devel] " Георгий Войт
@ 2008-06-22 16:07 ` Andreas Färber
2008-06-22 18:30 ` Георгий Войт
1 sibling, 0 replies; 6+ messages in thread
From: Andreas Färber @ 2008-06-22 16:07 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 1374 bytes --]
Георгий,
Am 22.06.2008 um 10:23 schrieb Георгий Войт:
> 2008/6/19 Георгий Войт <goshila@gmail.com>:
> is there in roadmap/TODO some plans about old (or not very
> old) SMP-hosts supporting? I mean - will qemu work not only on one
> core/CPU without HW acceleration (like kvm) ??? Can you make for
> each virtual CPU standalone qemu thread? 1 VurtualCPU - 1 qemu host
> thread; 2 VurtualCPU - 2 qemu host threads; etc ? I have P3 SMP
> machine, so it without intel VT technology on each CPU, so i can run
> qemu only on one CPU and KVM module can't be inserted... :(
> So, could you say me something about it?
>
> George.
> COULD SOMEONE SAY ME SOMETHING ABOUT IT?
Writing all-caps won't make the devs in the know more responsive to
such a general question.
Of course in theory it can be done. The problem is that it requires
synchronization between the threads, and the previous attempts to do
this reportedly resulted in code slower than the current single-
threaded version. See the list archives for details.
If you have a good idea to tackle this, feel free to contribute a patch.
As for the emulation speed, if you're running Linux maybe you can use
the kqemu module.
Andreas
[-- Attachment #2: Type: text/html, Size: 2377 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Qemu-devel] Re: Again about SMP-host supporting
2008-06-22 8:23 ` [Qemu-devel] " Георгий Войт
2008-06-22 16:07 ` Andreas Färber
@ 2008-06-22 18:30 ` Георгий Войт
2008-06-22 18:52 ` Andreas Färber
2008-06-22 21:42 ` Георгий Войт
1 sibling, 2 replies; 6+ messages in thread
From: Георгий Войт @ 2008-06-22 18:30 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 1873 bytes --]
22 июня 2008 г. 12:23 пользователь Георгий Войт <goshila@gmail.com> написал:
>
>
> 2008/6/19 Георгий Войт <goshila@gmail.com>:
>
>> At first:
>> Dear Developers!!! You make great and very usable solution! Very big
>> thx!!!!!!!!!!!!
>> So:
>> I have a question:
>> is there in roadmap/TODO some plans about old (or not very old)
>> SMP-hosts supporting? I mean - will qemu work not only on one core/CPU
>> without HW acceleration (like kvm) ??? Can you make for each virtual CPU
>> standalone qemu thread? 1 VurtualCPU - 1 qemu host thread; 2 VurtualCPU - 2
>> qemu host threads; etc ? I have P3 SMP machine, so it without intel VT
>> technology on each CPU, so i can run qemu only on one CPU and KVM module
>> can't be inserted... :(
>> So, could you say me something about it?
>> George.
>>
>
> Writing all-caps won't make the devs in the know more responsive to such a
> general question.
>
> Of course in theory it can be done. The problem is that it requires
> synchronization between the threads, and the previous attempts to do this
> reportedly resulted in code slower than the current single-threaded
> version. See the list archives for details.
>
> If you have a good idea to tackle this, feel free to contribute a patch.
>
> As for the emulation speed, if you're running Linux maybe you can use the
> kqemu module.
>
> Andreas
>
Ok Andreas, thank you very much for your reply =) Sorry about writing all in
caps-lock, i just thinking, that nobody couldn't answer to me... By the way,
i wish to use windows as guest, so can't using kqemu acceleration =( I
will try to find in archive version with smp support =) I have SMP with more
than 2 CPU's without HW acceleration support, so , maybe this version will
be more speedly, then single-threaded version?
George.
[-- Attachment #2: Type: text/html, Size: 3010 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Re: Again about SMP-host supporting
2008-06-22 18:30 ` Георгий Войт
@ 2008-06-22 18:52 ` Andreas Färber
2008-06-22 21:42 ` Георгий Войт
1 sibling, 0 replies; 6+ messages in thread
From: Andreas Färber @ 2008-06-22 18:52 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 603 bytes --]
Am 22.06.2008 um 20:30 schrieb Георгий Войт:
> 22 июня 2008 г. 12:23 пользователь Георгий
> Войт <goshila@gmail.com> написал:
>
>
> 2008/6/19 Георгий Войт <goshila@gmail.com>:
> As for the emulation speed, if you're running Linux maybe you can
> use the kqemu module.
>
> Andreas
>
> i wish to use windows as guest, so can't using kqemu acceleration =(
Sorry I was unclear, it depends on the host OS, not on the guest.
Linux, Solaris, FreeBSD should work as kqemu hosts, though I have no
experience with it.
Andreas
[-- Attachment #2: Type: text/html, Size: 1418 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Qemu-devel] Re: Again about SMP-host supporting
2008-06-22 18:30 ` Георгий Войт
2008-06-22 18:52 ` Andreas Färber
@ 2008-06-22 21:42 ` Георгий Войт
1 sibling, 0 replies; 6+ messages in thread
From: Георгий Войт @ 2008-06-22 21:42 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 833 bytes --]
>
> Andreas
>>
> As for the emulation speed, if you're running Linux maybe you can use the
>> kqemu module.
>>
>
> Andreas
>
> i wish to use windows as guest, so can't using kqemu acceleration =(
>
> Sorry I was unclear, it depends on the host OS, not on the guest. Linux,
> Solaris, FreeBSD should work as kqemu hosts, though I have no experience
> with it.
> Andreas
>
Ok Andreas, i use Linux as host and windows as guest, but as i understand,
kqemu module work only if it inserted on both (host and guest) OS's... So, i
tried to use kqemu only on host Linux, but no result... maybe it work on
seconds faster, but it's thread still uses only one CPU, or , as i saw in
htop, it's single thread jump between CPU's.... Now i will writing mail to
Paul Brook, he makes a prototype of qemu with multi-thread support.
George.
[-- Attachment #2: Type: text/html, Size: 1561 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-06-22 21:42 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-18 20:49 [Qemu-devel] Again about SMP-host supporting Георгий Войт
2008-06-22 8:23 ` [Qemu-devel] " Георгий Войт
2008-06-22 16:07 ` Andreas Färber
2008-06-22 18:30 ` Георгий Войт
2008-06-22 18:52 ` Andreas Färber
2008-06-22 21:42 ` Георгий Войт
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).