Re: [Qemu-devel] [qemu-s390x] [PATCH v5 15/15] s390-bios: Support booting from real dasd device

2019-04-01 Thread Thomas Huth
On 01/04/2019 17.35, Jason J. Herne wrote: > On 3/29/19 4:33 AM, Thomas Huth wrote: >> On 13/03/2019 17.31, Jason J. Herne wrote: [...] >>> +static void ipl1_fixup(void) >>> +{ >>> +    Ccw0 *ccwSeek = (Ccw0 *) 0x08; >>> +    Ccw0 *ccwSearchID = (Ccw0 *) 0x10; >>> +    Ccw0 *ccwSearchTic = (Ccw0 *)

Re: [Qemu-devel] [qemu-s390x] [PATCH v5 15/15] s390-bios: Support booting from real dasd device

2019-04-01 Thread Jason J. Herne
On 3/29/19 4:33 AM, Thomas Huth wrote: On 13/03/2019 17.31, Jason J. Herne wrote: s/tansfers/transfers/ Will fix this, and the other typos you've pointed out. ... +static char prefix_page[PAGE_SIZE * 2] +__attribute__((__aligned__(PAGE_SIZE * 2))); + +static void enable_prefixin

Re: [Qemu-devel] [qemu-s390x] [PATCH v5 15/15] s390-bios: Support booting from real dasd device

2019-03-29 Thread Thomas Huth
On 13/03/2019 17.31, Jason J. Herne wrote: > Allows guest to boot from a vfio configured real dasd device. > > Signed-off-by: Jason J. Herne > Reviewed-by: Cornelia Huck > --- [...] > diff --git a/docs/devel/s390-dasd-ipl.txt b/docs/devel/s390-dasd-ipl.txt > new file mode 100644 > index 000.