From: David 'Digit' Turner Date: Mon, 21 Jan 2013 23:48:21 +0000 (+0000) Subject: goldfish: add QEMU pipe driver X-Git-Tag: v3.9-rc1~127^2~322 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c89f2750e9845aa115ca30c062edd569da619cad;p=pandora-kernel.git goldfish: add QEMU pipe driver A QEMU pipe is a very fast communication channel between the guest system and the emulator. Usage from the guest is simply something like; // connect to special device fd = open("/dev/qemu_pipe", O_RDWR); // tell which service we want to talk to (must be zero-terminated) write(fd, "pipeName", strlen("pipeName")+1); // do read()/write() through fd now ... // close channel close(fd); Signed-off-by: David 'Digit' Turner [Added support for parameter buffers for speed] igned-off-by: Xin, Xiaohui Signed-off-by: Jiang, Yunhong Signed-off-by: Nakajima, Jun [Ported to 3.6] Signed-off-by: Tom Keel [Ported to 3.7, moved to platform/goldfish] Signed-off-by: Alan Cox Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed