Re: [Qemu-devel] [patch] fix scsi-generic

2010-08-30 Thread Kevin Wolf
Am 08.08.2010 22:08, schrieb adq: > On 8 August 2010 14:11, Kevin Wolf wrote: >> Am 07.08.2010 02:55, schrieb adq: >>> Hi, I've been tracking down why scsi generic devices (using SG_IO) >>> don't work any more. After adding debug, I can see that it actually >>> submits the scsi CDB in hw/scsi-gene

Re: [Qemu-devel] [patch] fix scsi-generic

2010-08-08 Thread adq
On 8 August 2010 23:13, adq wrote: > Hi, more information on the command that is (now) killing my > qemu+scsi-generic in case someone else can help... Its our old friend > the READ DVD STRUCTURE command: > > CMD: 00 ad > CMD: 01 00 > CMD: 02 00 > CMD: 03 00 > CMD: 04 00 > CMD: 05 00 > CMD: 06 00 >

Re: [Qemu-devel] [patch] fix scsi-generic

2010-08-08 Thread adq
Hi, more information on the command that is (now) killing my qemu+scsi-generic in case someone else can help... Its our old friend the READ DVD STRUCTURE command: CMD: 00 ad CMD: 01 00 CMD: 02 00 CMD: 03 00 CMD: 04 00 CMD: 05 00 CMD: 06 00 CMD: 07 01 CMD: 08 00 CMD: 09 08 CMD: 0a 00 CMD: 0b 00 Wh

Re: [Qemu-devel] [patch] fix scsi-generic

2010-08-08 Thread adq
On 8 August 2010 14:11, Kevin Wolf wrote: > Am 07.08.2010 02:55, schrieb adq: >> Hi, I've been tracking down why scsi generic devices (using SG_IO) >> don't work any more. After adding debug, I can see that it actually >> submits the scsi CDB in hw/scsi-generic.c/execute_command(), but that >> the

Re: [Qemu-devel] [patch] fix scsi-generic

2010-08-08 Thread Kevin Wolf
Am 07.08.2010 02:55, schrieb adq: > Hi, I've been tracking down why scsi generic devices (using SG_IO) > don't work any more. After adding debug, I can see that it actually > submits the scsi CDB in hw/scsi-generic.c/execute_command(), but that > the hw/scsi-generic.c/scsi_read_complete() callback

[Qemu-devel] [patch] fix scsi-generic

2010-08-06 Thread adq
Hi, I've been tracking down why scsi generic devices (using SG_IO) don't work any more. After adding debug, I can see that it actually submits the scsi CDB in hw/scsi-generic.c/execute_command(), but that the hw/scsi-generic.c/scsi_read_complete() callback is never called. This is because these ar