On Thu, Jul 22, 2010 at 03:29, capricorn 80
wrote:
>
> Hi!
>
> Can i get latest version of qemu for windows ?
Yes, why not?
--
regards,
Mulyadi Santosa
Freelance Linux trainer and consultant
blog: the-hydra.blogspot.com
training: mulyaditraining.blogspot.com
Ping?
On Tue, Jul 13, 2010 at 01:01:38PM +0900, Isaku Yamahata wrote:
> Changes v2 -> v1:
v3
> - dropped first patch as it is merdged.
> - rebased to mst's pci branch.
> - eliminated pci_brdige_qdev_register(), pci_brdige_create(),
> pci_brdige_create_simple() by exporting PCIBus
Hi,
Function regs_to_env() in target-i386/exec.h has a code like below:
...
#ifdef reg_EAX
env->regs[R_EAX] = EAX
#endif
...
However, elsewhere we have EAX defined as:
#define EAX (env->regs[R_EAX])
This means effectively, we have code like:
env->regs[R_EAX] = env->regs[R_EAX];
What is the m
Today I merged the new release qemu-kvm-0.12.4-r3 and, o, wonder, I can use
floppy and cd at the same time!
This bug seems to be fixed finally. thx for your support!
--
WinXP install cd hangs at boot time if machine started with floppy
https://bugs.launchpad.net/bugs/586420
You received this bug
I agree to #10. Today I installed qemu-kvm-0.12.4-r3 and I still can't
boot Windows XP/2003 without booting the install cd at first.
But now: After I tried to boot the Windows installation I get the same
odd char in the screen as described by #10. Plus, I can install Windows
without problems, but
P.S.: Of course I can't boot Windows XP/2003 from a VirtIO drive at all,
because the install cd only checks the IDE bus for an existing Windows
installation...
--
Windows XP/2003 doesn't boot
https://bugs.launchpad.net/bugs/586175
You received this bug notification because you are a member of qem
Anthony Liguori wrote:
> On 07/21/2010 04:58 PM, Daniel P. Berrange wrote:
> >>Yes there is. Use the version number.
> >>
> >The version number is not suitable, because features can be removed at
> >compile time and/or
>
> I don't see any features that libvirt would need to know about that a
Signed-off-by: Mike McCormack
---
hw/vhost.c |2 ++
hw/vhost_net.c |2 ++
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/hw/vhost.c b/hw/vhost.c
index d37a66e..e1cd4d2 100644
--- a/hw/vhost.c
+++ b/hw/vhost.c
@@ -11,7 +11,9 @@
*/
#include
+#ifdef CONFIG_EVENTFD
On 07/21/2010 04:58 PM, Daniel P. Berrange wrote:
Yes there is. Use the version number.
The version number is not suitable, because features can be removed at
compile time and/or
I don't see any features that libvirt would need to know about that are
disabled at compile time that aren'
On Wed, Jul 21, 2010 at 04:45:46PM -0500, Anthony Liguori wrote:
> On 07/21/2010 04:32 PM, Daniel P. Berrange wrote:
> >On Wed, Jul 21, 2010 at 03:55:28PM -0500, Anthony Liguori wrote:
> >
> >>On 07/21/2010 03:32 PM, Bruce Rogers wrote:
> >>
> >>>Libvirt parses qemu help output to determine
On 07/21/2010 04:32 PM, Daniel P. Berrange wrote:
On Wed, Jul 21, 2010 at 03:55:28PM -0500, Anthony Liguori wrote:
On 07/21/2010 03:32 PM, Bruce Rogers wrote:
Libvirt parses qemu help output to determine qemu features. In particular
it probes for the following: "cache=writethrough|w
On Wed, Jul 21, 2010 at 03:55:28PM -0500, Anthony Liguori wrote:
> On 07/21/2010 03:32 PM, Bruce Rogers wrote:
> >Libvirt parses qemu help output to determine qemu features. In particular
> > it probes for the following: "cache=writethrough|writeback|none". The
> > addition of the unsafe cache mo
On 07/21/2010 03:32 PM, Bruce Rogers wrote:
Libvirt parses qemu help output to determine qemu features. In particular
it probes for the following: "cache=writethrough|writeback|none". The
addition of the unsafe cache mode was inserted within this string, as
opposed to being added to the end
Libvirt parses qemu help output to determine qemu features. In particular
it probes for the following: "cache=writethrough|writeback|none". The
addition of the unsafe cache mode was inserted within this string, as
opposed to being added to the end, which impacted libvirt's probe.
Unbreak libvir
On 07/21/2010 09:44 PM, Luiz Capitulino wrote:
> On Sun, 18 Jul 2010 15:43:55 +0300
> Michael Goldish wrote:
>
>> Signed-off-by: Michael Goldish
>
> Do you need this for 0.13? I think the development window is already closed.
No, it's not urgent.
>> ---
>> monitor.c | 15
Hi!
Can i get latest version of qemu for windows ?
Regards,
I have decided to apply the broken window theory of crime
http://en.wikipedia.org/wiki/Broken_windows_theory to code, and
more specifically to qemu. I'm hoping that fixing seemingly trivial
bugs will actually fix some more serious bugs, make the code run
just a bit smoother, or at the very least
We already set sockets to nonzero in the code above.
So this if statement always evaluates true. Remove it.
Signed-off-by: Joel Schopp
---
vl.c |4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/vl.c b/vl.c
index 8a5de9f..a0c28b6 100644
--- a/vl.c
+++ b/vl.c
@@ -801,9 +
The variable len can get a negative return value from cvtnum,
which we check for, but which is impossible with the current
unsigned variable type. Currently the if(len < 0) check is
pointless. This patch fixes that.
Signed-off-by: Joel Schopp
---
qemu-io.c |4 ++--
1 files changed, 2 inser
Removing dead code. Above we already continued when
rom->addr + valuegreaterthan0 < addr so this condition is always false.
Signed-off-by: Joel Schopp
---
hw/loader.c |5 -
1 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/hw/loader.c b/hw/loader.c
index 79a6f95..49ac1fa 10
"No such file or directory" is a misleading error message
when a user tries to open a file with wrong permissions.
v2: return an 0/-errno int and pass the BlockDriver* by reference
as suggested by Kevin Wolf
Cc: Kevin Wolf
Signed-off-by: Stefan Weil
---
block.c | 27 +++--
Cam Macdonell wrote:
> On Wed, Jul 21, 2010 at 2:27 AM, Dallas Lee wrote:
>> Hi,
>> I have trying to use the virtio-9p for my linux in QEMU, but without
>> success.
>> Here is my option for booting my qemu:
>> i386-softmmu/qemu -kernel bzImage -append "console=ttyS0
>> video=uvesafb:ywrap,overlay:
On Wed, Jul 21, 2010 at 03:44:14PM -0300, Luiz Capitulino wrote:
> On Sun, 18 Jul 2010 15:43:55 +0300
> Michael Goldish wrote:
>
> > Signed-off-by: Michael Goldish
>
> Do you need this for 0.13? I think the development window is already closed.
>
> > ---
> > monitor.c | 15 ---
On Sun, 18 Jul 2010 15:43:55 +0300
Michael Goldish wrote:
> Signed-off-by: Michael Goldish
Do you need this for 0.13? I think the development window is already closed.
> ---
> monitor.c | 15 ---
> qemu-monitor.hx | 22 +-
> qerror.c| 12 +++
On 07/21/2010 12:51 PM, Daniel P. Berrange wrote:
On Wed, Jul 21, 2010 at 02:42:28PM -0300, Luiz Capitulino wrote:
On Mon, 19 Jul 2010 13:51:27 -0300
Miguel Di Ciurcio Filho wrote:
Converts the 'info qdm' command to QMP, allowing the discovery of all devices
known to the QEMU binary
On Wed, 21 Jul 2010 18:51:19 +0100
"Daniel P. Berrange" wrote:
> On Wed, Jul 21, 2010 at 02:42:28PM -0300, Luiz Capitulino wrote:
> > On Mon, 19 Jul 2010 13:51:27 -0300
> > Miguel Di Ciurcio Filho wrote:
> >
> > > Converts the 'info qdm' command to QMP, allowing the discovery of all
> > > devi
On Wed, Jul 21, 2010 at 2:27 AM, Dallas Lee wrote:
> Hi,
> I have trying to use the virtio-9p for my linux in QEMU, but without
> success.
> Here is my option for booting my qemu:
> i386-softmmu/qemu -kernel bzImage -append "console=ttyS0
> video=uvesafb:ywrap,overlay:rgb16,480x800...@60 root=/dev
On Wed, Jul 21, 2010 at 02:42:28PM -0300, Luiz Capitulino wrote:
> On Mon, 19 Jul 2010 13:51:27 -0300
> Miguel Di Ciurcio Filho wrote:
>
> > Converts the 'info qdm' command to QMP, allowing the discovery of all
> > devices
> > known to the QEMU binary without relying on command line paramaters l
On Mon, 19 Jul 2010 13:51:27 -0300
Miguel Di Ciurcio Filho wrote:
> Converts the 'info qdm' command to QMP, allowing the discovery of all devices
> known to the QEMU binary without relying on command line paramaters like
> -device ? and -device devtype,?
>
> This change does not modify the outpu
Hi,
It seems to be a modified version of QEMU.
If it is the case you must contact the modifier or test with an unmodified
version.
If it is not, you must provide more detailed information, like, exact qemu
version, command line, and extended fail information as given by Windows. If
possible,
Am 21.07.2010 09:03, schrieb Chen Yufei:
On 2010-7-21, at 上午5:43, Blue Swirl wrote:
On Sat, Jul 17, 2010 at 10:27 AM, Chen Yufei wrote:
We are pleased to announce COREMU, which is a "multicore-on-multicore"
full-system emulator built on Qemu. (Simply speaking, we made Qemu parallel
Can any one help me in that please.
Hi!
I am trying to run asa 802, asdm 602 with gns3. After long struggle i managed
to fixed every thing. But now when i run asdm the Qemu crashes.
The reference is on this post -> http://www.gns3.net/phpBB/topic2349.html
Thanks for any kind of hel
From: Aneesh Kumar K.V
We should always use functions which don't follow
symlink on the server
Signed-off-by: Aneesh Kumar K.V
Signed-off-by: Venkateswararao Jujjuri
---
hw/virtio-9p-local.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/hw/virtio-9p-local.c b/hw/vi
From: M. Mohan Kumar
size[4] Trename tag[2] fid[4] newdirfid[4] name[s]
size[4] Rrename tag[2]
Implement the 2000.L rename operation. A new function
v9fs_complete_rename is introduced that acts as a common entry point
for 2000.L rename operation and 2000.U rename opearation (via wstat).
As part
From: M. Mohan Kumar
Implement 9p2000.L version of open(LOPEN) interface in qemu 9p server.
For LOPEN, no need to convert the flags to and from 9p mode to VFS mode.
Synopsis:
size[4] Tlopen tag[2] fid[4] mode[4]
size[4] Rlopen tag[2] qid[13] iounit[4]
Current qemu 9p server does not
From: Sripathi Kodi
This patch implements the server part of readdir() implementation for
9p2000.L
SYNOPSIS
size[4] Treaddir tag[2] fid[4] offset[8] count[4]
size[4] Rreaddir tag[2] count[4] data[count]
DESCRIPTION
The readdir request asks the server to read the directory
From: Aneesh Kumar K.V
With mapped security mode we use "user.virtfs" namespace is used
to store the virtFs related attributes. So hide it from user.
Signed-off-by: Aneesh Kumar K.V
Signed-off-by: Venkateswararao Jujjuri
---
hw/virtio-9p-local.c | 75
From: Sripathi Kodi
Currently v9fs_do_utimensat takes a V9fsStat argument and builds
timespec structures. It sets tv_nsec values to 0 by default. Instead
of this it should take struct timespec[2] and pass it down to the
system directly. This will make it more generic and useful
elsewhere.
Signed
From: M. Mohan Kumar
Implement TMKNOD as part of 2000.L Work
Synopsis
size[4] Tmknod tag[2] fid[4] name[s] mode[4] major[4] minor[4] gid[4]
size[4] Rmknod tag[2] qid[13]
Description
mknod asks the file server to create a device node with given device
type, mode and gid. The q
From: M. Mohan Kumar
Compute iounit based on the host filesystem block size and pass it to
client with open/create response. Also return iounit as statfs's f_bsize
for optimal block size transfers.
Signed-off-by: M. Mohan Kumar
Reviewd-by: Sripathi Kodi
Signed-off-by: Venkateswararao Jujjuri
Signed-off-by: Venkateswararao Jujjuri
---
hw/virtio-9p.c | 14 +++---
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c
index 1621dab..e278cc1 100644
--- a/hw/virtio-9p.c
+++ b/hw/virtio-9p.c
@@ -2822,15 +2822,15 @@ static void v9fs_wstat_po
From: Sripathi Kodi
SYNOPSIS
size[4] Tgetattr tag[2] fid[4] request_mask[8]
size[4] Rgetattr tag[2] lstat[n]
DESCRIPTION
The getattr transaction inquires about the file identified by fid.
request_mask is a bit mask
From: M. Mohan Kumar
Synopsis
size[4] Tmkdir tag[2] fid[4] name[s] mode[4] gid[4]
size[4] Rmkdir tag[2] qid[13]
Description
mkdir asks the file server to create a directory with given name,
mode and gid. The qid for the new directory is returned with
the mkdir reply messag
SYNOPSIS
size[4] Tlcreate tag[2] fid[4] name[s] flags[4] mode[4] gid[4]
size[4] Rlcreate tag[2] qid[13] iounit[4]
DESCRIPTION
The Tlreate request asks the file server to create a new regular file with the
name supplied, in the directory (dir) represented by fid.
The mode argument specif
This patch implements creating a symlink for TSYMLINK request
and responds with RSYMLINK. In the case of error, we return RERROR.
SYNOPSIS
size[4] Tsymlink tag[2] fid[4] name[s] symtgt[s] gid[4]
size[4] Rsymlink tag[2] qid[13]
DESCRIPTION
Create a symbolic link named 'name' poi
From: Sripathi Kodi
SYNOPSIS
size[4] Tsetattr tag[2] attr[n]
size[4] Rsetattr tag[2]
DESCRIPTION
The setattr command changes some of the file status information.
attr resembles the iattr structure used in Linux kernel. It
specifies which status parameter is to
From: Sripathi Kodi
Signed-off-by: Sripathi Kodi
In v9fs_remove_post_remove() we currently ignore the error returned by
the previous call to remove() and return an error only if freeing the
fid fails. However, the client expects to see the error from remove().
Currently the client falsely think
From: Aneesh Kumar K.V
This is equivalent to SM_PASSTHROUGH security model.
The only exception is, failure of privilige operation like chown
are ignored. This makes a passthrough like security model usable
for people who runs kvm as non root
Signed-off-by: Aneesh Kumar K.V
Signed-off-by: Venkat
From: M. Mohan Kumar
Current code resets file's atime to 0 when there is a change in mtime.
This results in resetting the atime to "1970-01-01 05:30:00". For
example, truncate -s 0 filename results in changing the mtime to the
truncate time, but resets the atime to "1970-01-01 05:
From: Aneesh Kumar K.V
TXATTRCREATE: Prepare a fid for setting xattr value on a file system object.
size[4] TXATTRCREATE tag[2] fid[4] name[s] attr_size[8] flags[4]
size[4] RXATTRWALK tag[2]
txattrcreate gets a fid pointing to xattr. This fid can later be
used to get set the xattr value.
fl
From: Aneesh Kumar K.V
TXATTRWALK: Descend a ATTR namespace
size[4] TXATTRWALK tag[2] fid[4] newfid[4] name[s]
size[4] RXATTRWALK tag[2] size[8]
txattrwalk gets a fid pointing to xattr. This fid can later be
used to get read the xattr value. If name is NULL the fid returned
can be used to get
From: Aneesh Kumar K.V
The arguments are wrong. Use qemu_mallocz directly
Signed-off-by: Aneesh Kumar K.V
Signed-off-by: Venkateswararao Jujjuri
---
hw/virtio-9p.c |3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c
index 68103ab..1621dab
Create a Hardlink.
SYNOPSIS
size[4] Tlink tag[2] dfid[4] oldfid[4] newpath[s]
size[4] Rlink tag[2]
DESCRIPTION
Create a link 'newpath' in directory pointed by dfid linking to oldfid path.
Signed-off-by: Venkateswararao Jujjuri
---
hw/virtio-9p-debug.c |9 +
hw/virtio-9p.c
This patch series is a consolidated view of various VirtFS patches on the
Mailing List.
None of these patches are new in this series.
For sometime all these patches were on the mainling list individually.
Signed-off-by: Venkateswararao Jujjuri
From: Aneesh Kumar K.V
We want to add type specific operation during read/write
Signed-off-by: Aneesh Kumar K.V
---
hw/virtio-9p.c | 110 ++--
hw/virtio-9p.h | 24 +++-
2 files changed, 81 insertions(+), 53 deletions(-)
diff --git
From: M. Mohan Kumar
Make 9P server recognize 9P2000.L protocol version
Signed-off-by: M. Mohan Kumar
Signed-off-by: Venkateswararao Jujjuri
---
hw/virtio-9p.c |6 +-
hw/virtio-9p.h |6 ++
2 files changed, 11 insertions(+), 1 deletions(-)
diff --git a/hw/virtio-9p.c b/hw/virt
From: M. Mohan Kumar
Implement statfs support in qemu server based on Sripathi's
initial statfs patch.
Signed-off-by: M. Mohan Kumar
Signed-off-by: Sripathi Kodi
Signed-off-by: Venkateswararao Jujjuri
---
hw/file-op-9p.h |1 +
hw/virtio-9p-local.c |6
hw/virtio-9p.c |
Here's an experiment for sanity checking the lengths and leaving
the command in the FIFO if it is not complete. It fixes the
problem for me (running it right now), but I agree that it's not
very elegant to look at :-/ .
And here's another version with couple of stupid bugs removed
(it obviousl
I see no way to tell whether the guest is currently in the middle of
writing a command. So it seems the only way to check is to peek the
first word in the fifo (which *is* written entirely before a NEXT_CMD
update) and look up the expected command length, and then check
whether enough data is i
Forgot to check for and free these.
Found-by: Zachary Amsden
Signed-off-by: Alex Williamson
---
0.13 Candidate
savevm.c |6 ++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/savevm.c b/savevm.c
index ee27989..1612794 100644
--- a/savevm.c
+++ b/savevm.c
@@ -1126,6 +11
On Wed, Jul 21, 2010 at 04:13:10PM +0200, Markus Armbruster wrote:
> Agreed, but I figure Jes's fix is the best we can do for .13, and worth
> doing for .13.
As said in the previous mail it's incorrect in many ways. If at all
you could reject devices and files on filesysystems on device with
sect
Christoph Hellwig writes:
> On Wed, Jul 21, 2010 at 09:45:19AM +0200, jes.soren...@redhat.com wrote:
>> From: Jes Sorensen
>>
>> O_DIRECT (cache=none) requires sector alignment, however the physical
>> sector size of CDROM/DVD drives is 2048, as opposed to most disk
>> devices which use 512. QE
Am 20.07.2010 19:14, schrieb Alex Williamson:
> Otherwise we can't migrate after we've removed a virtio block device.
>
> Signed-off-by: Alex Williamson
Thanks, applied to the block branch.
Kevin
From: John Haxby
Introduce a new 'connected' xendev op called when Connected.
Rename the existing xendev 'connect' op to 'initialised' and introduce
a new 'connected' op. This new op, if defined, is called when the
backend is connected. Note that since there is no state transition this
may be
From: John Haxby
Move the xenfb pointer handler to the connected method
Ensure that we read "request-abs-pointer" after the frontend has written
it. This means that we will correctly set up an ansolute or relative
pointer handler correctly.
Signed-off-by: John Haxby
Signed-off-by: Stefano Sta
On Wed, Jul 21, 2010 at 09:45:19AM +0200, jes.soren...@redhat.com wrote:
> From: Jes Sorensen
>
> O_DIRECT (cache=none) requires sector alignment, however the physical
> sector size of CDROM/DVD drives is 2048, as opposed to most disk
> devices which use 512. QEMU is hard coding 512 all over the
Hello,
I am looking for documentation on adding new hardware support, I would like
to emulate an SH7724 processors, is there any kind of documentation on
adding support in qemu for new hardware?..
thank in advanced and best regards!.
On 21 July 2010 14:14, Janne Huttunen wrote:
>> No, I think that can't happen, but it would be interesting to bisect
>> what the guest is doing exactly when this happens. The guest should
>> not move the "next command" pointer before if has written the command
>> entirely, this should be enough t
No, I think that can't happen, but it would be interesting to bisect
what the guest is doing exactly when this happens. The guest should
not move the "next command" pointer before if has written the command
entirely, this should be enough to guard against executing a partial
command. Unless th
Hi,
On 21 July 2010 13:17, Janne Huttunen wrote:
> Now, correct me if I'm wrong, but isn't vmsvga_fifo_run() called
> from an asynchronous context (wrt the guest)? If that indeed is
> so, it may very well be, that it is run while the guest is
> modifying the FIFO. This means, that a command may f
Hi!
I'm trying to run a Linux guest on top of QEMU (kvm). The only VGA
emulation that seems to give any kind of usable performance is the
vmware SVGA adapter, but that in turn is very unstable. It usually
freezes the guest display within a minute or two and starts printing
an error like "vmsvga_
Currently virtio-serial supports a maximum of 31 ports. Specifying the
'max_ports' parameter to be > 31 on the cmd line causes badness.
Ensure we initialise virtio-serial only if max_ports is within the
supported range.
Signed-off-by: Amit Shah
---
hw/virtio-serial-bus.c | 10 +-
1 fi
jes.soren...@redhat.com writes:
> From: Jes Sorensen
>
> O_DIRECT (cache=none) requires sector alignment, however the physical
> sector size of CDROM/DVD drives is 2048, as opposed to most disk
> devices which use 512. QEMU is hard coding 512 all over the place, so
> allowing O_DIRECT for CDROM/D
Public bug reported:
QEMU VERSION: 0.12.4
According to FreeScale's 'Programming Environments Manual for 32-bit
Implementations of the PowerPC Architecture' [MPCFPE32B, Rev.3, 9/2005],
section 6.5, table 6-7, an interrupt resets MSR_POW to zero but qemu-0.12.4
fails to do so.
Resetting the bit
** Patch added: "Suggested fix"
http://launchpadlibrarian.net/52250654/ppc-msr_pow-clear.diff
--
ppc fails to clear MSR_POW when incurring exception
https://bugs.launchpad.net/bugs/608107
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEM
Hi,
I have trying to use the virtio-9p for my linux in QEMU, but without
success.
Here is my option for booting my qemu:
i386-softmmu/qemu -kernel bzImage -append "console=ttyS0
video=uvesafb:ywrap,overlay:rgb16,480x800...@60 root=/dev/nfs rw
nfsroot=10.0.2.2:/root,udp ip=10.0.2.16:eth0:none
On 07/20/10 19:19, Markus Armbruster wrote:
> Jes Sorensen writes:
>
>> On 07/20/10 18:35, David S. Ahern wrote:
>>> On 07/20/10 10:09, jes.soren...@redhat.com wrote:
>>> If a cdrom is added via the monitor this would abruptly terminate the VM
>>> - which is not good.
>>
>> True, but this would o
From: Jes Sorensen
O_DIRECT (cache=none) requires sector alignment, however the physical
sector size of CDROM/DVD drives is 2048, as opposed to most disk
devices which use 512. QEMU is hard coding 512 all over the place, so
allowing O_DIRECT for CDROM/DVD devices does not work.
Return -ENOTSUP f
On 21.07.2010, at 00:22, Blue Swirl wrote:
> On Sat, Jul 17, 2010 at 9:50 AM, Richard W.M. Jones wrote:
>> I'm trying to speed up the process of loading kernel and initrd.
>>
>> I found that the main loop which loads these into qemu memory does it
>> via executing in the guest:
>>
>> rep insb
Hi,
There has been some confusion around the format of the tracks at Linux
Plumbers: Presentations vs Micro Conference, so the program committee
has extended the deadline by one week. If you didn't get your submission
in earlier, or you were confused, this is your final chance.
Please see http://
On 2010-7-21, at 上午5:43, Blue Swirl wrote:
> On Sat, Jul 17, 2010 at 10:27 AM, Chen Yufei wrote:
>> We are pleased to announce COREMU, which is a "multicore-on-multicore"
>> full-system emulator built on Qemu. (Simply speaking, we made Qemu parallel.)
>>
>> The project web page is located at:
81 matches
Mail list logo