[Qemu-devel] [PATCH] scsi: Use 'SCSIRequest' directly

2010-11-22 Thread Hannes Reinecke
Currently the SCSIRequest structure is abstracted away and cannot accessed directly from the driver. This requires the handler to do a lookup on an abstract 'tag' which identifies the SCSIRequest structure. With this patch the SCSIRequest structure is exposed to the driver. This allows use to use

Re: [Qemu-devel] [PATCH] scsi: Use 'SCSIRequest' directly

2010-11-22 Thread Christoph Hellwig
On Mon, Nov 22, 2010 at 11:15:35AM +0100, Hannes Reinecke wrote: Currently the SCSIRequest structure is abstracted away and cannot accessed directly from the driver. This requires the handler to do a lookup on an abstract 'tag' which identifies the SCSIRequest structure. With this patch the