From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JHiB6-00054W-Gj for qemu-devel@nongnu.org; Wed, 23 Jan 2008 11:10:16 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JHiB1-0004yY-O8 for qemu-devel@nongnu.org; Wed, 23 Jan 2008 11:10:15 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JHiB1-0004yP-Ke for qemu-devel@nongnu.org; Wed, 23 Jan 2008 11:10:11 -0500 Received: from ecfrec.frec.bull.fr ([129.183.4.8]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JHiB1-0005WZ-Fe for qemu-devel@nongnu.org; Wed, 23 Jan 2008 11:10:11 -0500 Received: from localhost (localhost [127.0.0.1]) by ecfrec.frec.bull.fr (Postfix) with ESMTP id 68FA919D9A0 for ; Wed, 23 Jan 2008 17:09:44 +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 12862-04 for ; Wed, 23 Jan 2008 17:09:40 +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 4903119D94C for ; Wed, 23 Jan 2008 17:09:23 +0100 (CET) In-Reply-To: Date: Wed, 23 Jan 2008 17:12:53 +0100 Message-Id: <12011047731303@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/5] SCSI passthrough cleanup 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 makes some cleanups in SCSI passthrough and add functionnalities. [PATCH 1/5] reverse scsi-generic Reverse previous implementation and restore block-raw-posix.c. [PATCH 2/5] Move AIO This patche moves raw AIO part from block-raw-posix.c to qemu-aio-raw.c. [PATCH 3/5] Add block SG interface This patch re-implement scsi-generic.c using a new block interface. [PATCH 4/5] DVD movie support This patch allows to read a protected/encrypted movie from a DVD. [PATCH 5/5] SCSI device DMA split This patch allows to split a READ or WRITE into several READ or WRITE. Laurent