Re: [Qemu-devel] qemu ./Makefile.target ./usb-linux.c ./vl.c ./v...

2006-05-26 Thread Paul Brook
On Friday 26 May 2006 16:34, Blue Swirl wrote: Log message: Rearrange SCSI disk emulation code. At least partial transfers are broken, the command returns zero data. Could you elaborate a bit more please? I've no idea what you mean by partial transfers. Paul

Re: [Qemu-devel] qemu ./Makefile.target ./usb-linux.c ./vl.c ./v...

2006-05-26 Thread Blue Swirl
Could you elaborate a bit more please? I've no idea what you mean by partial transfers. Actually the problem was that Qemu block devices use fixed sector size 512, not variable 2048/512 like scsi layer. This meant that the bdrv_read transferred too little data. Fix attached.

Re: [Qemu-devel] qemu ./Makefile.target ./usb-linux.c ./vl.c ./v...

2006-05-26 Thread Paul Brook
On Friday 26 May 2006 16:55, Blue Swirl wrote: Could you elaborate a bit more please? I've no idea what you mean by partial transfers. Actually the problem was that Qemu block devices use fixed sector size 512, not variable 2048/512 like scsi layer. This meant that the bdrv_read transferred

[Qemu-devel] qemu ./Makefile.target ./usb-linux.c ./vl.c ./v...

2006-05-25 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Branch: Changes by: Paul Brook [EMAIL PROTECTED] 06/05/25 23:58:51 Modified files: . : Makefile.target usb-linux.c vl.c vl.h hw : esp.c ide.c usb-hid.c usb-hub.c usb.c usb.h Added files:

Re: [Qemu-devel] qemu ./Makefile.target ./usb-linux.c ./vl.c ./v...

2006-05-25 Thread Johannes Schindelin
Hi, On Thu, 25 May 2006, Paul Brook wrote: Add USB mass storage device emulation. Cool! Does this work with the VFAT emulation layer? Ciao, Dscho ___ Qemu-devel mailing list Qemu-devel@nongnu.org

Re: [Qemu-devel] qemu ./Makefile.target ./usb-linux.c ./vl.c ./v...

2006-05-25 Thread Paul Brook
On Friday 26 May 2006 01:01, Johannes Schindelin wrote: Hi, On Thu, 25 May 2006, Paul Brook wrote: Add USB mass storage device emulation. Cool! Does this work with the VFAT emulation layer? In theory I think it should. I haven't tested it though. Paul