qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] help
@ 2014-06-23  1:31 lc
  2014-06-23  3:18 ` Gonglei (Arei)
  0 siblings, 1 reply; 4+ messages in thread
From: lc @ 2014-06-23  1:31 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 168 bytes --]

hi,everyone
I want to copy a 3M picture from the guest to the host,which method i can use,i think channel is too slow,because i want sent 30 pieces per second.

thanks.

[-- Attachment #2: Type: text/html, Size: 1466 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] help
  2014-06-23  1:31 [Qemu-devel] help lc
@ 2014-06-23  3:18 ` Gonglei (Arei)
  2014-06-23  3:44   ` [Qemu-devel] mem_pci devices lc
  0 siblings, 1 reply; 4+ messages in thread
From: Gonglei (Arei) @ 2014-06-23  3:18 UTC (permalink / raw)
  To: lc, qemu-devel@nongnu.org

[-- Attachment #1: Type: text/plain, Size: 509 bytes --]

Hi,

Why not configure Nic  for VM to transfer those pictures ?




Best regards,
-Gonglei

From: qemu-devel-bounces+arei.gonglei=huawei.com@nongnu.org [mailto:qemu-devel-bounces+arei.gonglei=huawei.com@nongnu.org] On Behalf Of lc
Sent: Monday, June 23, 2014 9:32 AM
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] help

hi,everyone
I want to copy a 3M picture from the guest to the host,which method i can use,i think channel is too slow,because i want sent 30 pieces per second.
thanks.


[-- Attachment #2: Type: text/html, Size: 5678 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] mem_pci devices
  2014-06-23  3:18 ` Gonglei (Arei)
@ 2014-06-23  3:44   ` lc
  2014-06-23  4:02     ` Gonglei (Arei)
  0 siblings, 1 reply; 4+ messages in thread
From: lc @ 2014-06-23  3:44 UTC (permalink / raw)
  To: Gonglei (Arei); +Cc: qemu-devel@nongnu.org

[-- Attachment #1: Type: text/plain, Size: 966 bytes --]

I want to use the memory mapping methods, so I made a memory pci devices, but I know very little about Windows driver programming, someone has done such a thing。


static TypeInfo mem_pci_info = {
    .name = "mem_pci",
    .parent = TYPE_PCI_DEVICE,
    .instance_size = sizeof(PCIMEMPCIState),
    .class_init = mem_pci_class_init,
};






thinks  Gonglei.

            





At 2014-06-23 11:18:59, "Gonglei (Arei)" <arei.gonglei@huawei.com> wrote:


Hi,

 

Why not configure Nic  for VM to transfer those pictures ?

 

 

 

 

Best regards,

-Gonglei

 

From: qemu-devel-bounces+arei.gonglei=huawei.com@nongnu.org [mailto:qemu-devel-bounces+arei.gonglei=huawei.com@nongnu.org] On Behalf Of lc
Sent: Monday, June 23, 2014 9:32 AM
To:qemu-devel@nongnu.org
Subject: [Qemu-devel] help

 

hi,everyone
I want to copy a 3M picture from the guest to the host,which method i can use,i think channel is too slow,because i want sent 30 pieces per second.

thanks.

 

[-- Attachment #2: Type: text/html, Size: 6790 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] mem_pci devices
  2014-06-23  3:44   ` [Qemu-devel] mem_pci devices lc
@ 2014-06-23  4:02     ` Gonglei (Arei)
  0 siblings, 0 replies; 4+ messages in thread
From: Gonglei (Arei) @ 2014-06-23  4:02 UTC (permalink / raw)
  To: lc; +Cc: qemu-devel@nongnu.org

[-- Attachment #1: Type: text/plain, Size: 1440 bytes --]

Hi,

Ok, your used method  as the same as ivshmem,
so actually your problem is  “how to write driver for ivshmem in windows guests ?”

but IMHO no one has realized this.




Best regards,
-Gonglei

From: lc [mailto:nightopen@163.com]
Sent: Monday, June 23, 2014 11:45 AM
To: Gonglei (Arei)
Cc: qemu-devel@nongnu.org
Subject: Re:RE: [Qemu-devel] mem_pci devices

I want to use the memory mapping methods, so I made a memory pci devices, but I know very little about Windows driver programming, someone has done such a thing。

static TypeInfo mem_pci_info = {
    .name = "mem_pci",
    .parent = TYPE_PCI_DEVICE,
    .instance_size = sizeof(PCIMEMPCIState),
    .class_init = mem_pci_class_init,
};



thinks  Gonglei.





At 2014-06-23 11:18:59, "Gonglei (Arei)" <arei.gonglei@huawei.com> wrote:

Hi,

Why not configure Nic  for VM to transfer those pictures ?




Best regards,
-Gonglei

From: qemu-devel-bounces+arei.gonglei=huawei.com@nongnu.org<mailto:huawei.com@nongnu.org> [mailto:qemu-devel-bounces+arei.gonglei=huawei.com@nongnu.org<mailto:huawei.com@nongnu.org>] On Behalf Of lc
Sent: Monday, June 23, 2014 9:32 AM
To: qemu-devel@nongnu.org<mailto:qemu-devel@nongnu.org>
Subject: [Qemu-devel] help

hi,everyone
I want to copy a 3M picture from the guest to the host,which method i can use,i think channel is too slow,because i want sent 30 pieces per second.
thanks.



[-- Attachment #2: Type: text/html, Size: 14946 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-06-23  4:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-23  1:31 [Qemu-devel] help lc
2014-06-23  3:18 ` Gonglei (Arei)
2014-06-23  3:44   ` [Qemu-devel] mem_pci devices lc
2014-06-23  4:02     ` Gonglei (Arei)

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).