From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J5kvF-0006op-W6 for qemu-devel@nongnu.org; Fri, 21 Dec 2007 11:40:30 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J5kvE-0006na-VE for qemu-devel@nongnu.org; Fri, 21 Dec 2007 11:40:29 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J5kvE-0006nH-Pu for qemu-devel@nongnu.org; Fri, 21 Dec 2007 11:40:28 -0500 Received: from ecfrec.frec.bull.fr ([129.183.4.8]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J5kvE-0004a6-M0 for qemu-devel@nongnu.org; Fri, 21 Dec 2007 11:40:28 -0500 Received: from localhost (localhost [127.0.0.1]) by ecfrec.frec.bull.fr (Postfix) with ESMTP id 5304B19D958 for ; Fri, 21 Dec 2007 17:40:30 +0100 (CET) Received: from ecfrec.frec.bull.fr ([127.0.0.1]) by localhost (ecfrec.frec.bull.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11236-04 for ; Fri, 21 Dec 2007 17:40:27 +0100 (CET) Received: from ecn002.frec.bull.fr (ecn002.frec.bull.fr [129.183.4.6]) by ecfrec.frec.bull.fr (Postfix) with ESMTP id 6B09919D910 for ; Fri, 21 Dec 2007 17:40:26 +0100 (CET) In-Reply-To: Date: Fri, 21 Dec 2007 17:40:39 +0100 Message-Id: <1198255238268@bull.net> Mime-Version: 1.0 From: Laurent Vivier Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-1" Subject: [Qemu-devel] [PATCH 0/2] Real SCSI device passthrough (v5) Reply-To: Laurent Vivier , qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: qemu-devel@nongnu.org This series of patches allows to connect real SCSI device to the virtual SCSI controller of Qemu using the SCSI Generic interface (/dev/sg) for instance: qemu -hda my_disk.qcow2 -drive file=3D/dev/sg3,if=3Dscsi [PATCH 1/2] Real SCSI device passthrough (v5) This patch allows to connect the virtual SCSI interface of Qemu to a real SCSI device of the host. [PATCH 2/2] Real SCSI device DMA split (v5) This patch allows to split a READ or WRITE into several READ or WRITE. Laurent