From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J0e7u-0007IE-Aa for qemu-devel@nongnu.org; Fri, 07 Dec 2007 09:24:26 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J0e7r-0007GQ-G6 for qemu-devel@nongnu.org; Fri, 07 Dec 2007 09:24:24 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J0e7r-0007GJ-BW for qemu-devel@nongnu.org; Fri, 07 Dec 2007 09:24:23 -0500 Received: from ecfrec.frec.bull.fr ([129.183.4.8]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J0e7q-000568-Sk for qemu-devel@nongnu.org; Fri, 07 Dec 2007 09:24:23 -0500 Received: from localhost (localhost [127.0.0.1]) by ecfrec.frec.bull.fr (Postfix) with ESMTP id 7953E19D9AC for ; Fri, 7 Dec 2007 15:23:46 +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 28085-03 for ; Fri, 7 Dec 2007 15:23:43 +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 BADA619D967 for ; Fri, 7 Dec 2007 15:23:42 +0100 (CET) In-Reply-To: Date: Fri, 7 Dec 2007 15:23:38 +0100 Message-Id: <11970374183299@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 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] SCSI cleanup This patch reworks the interface between SCSI controller and SCSI devic= e. [PATCH 2/2] Real SCSI device passthrough (v3) This patch allows to connect the virtual SCSI interface of Qemu to a real SCSI device of the host. Laurent