1be5c7
From 511d05f31824b375057ba8dea3f0343ce6e1c1e8 Mon Sep 17 00:00:00 2001
1be5c7
From: Thomas Huth <thuth@redhat.com>
1be5c7
Date: Fri, 8 Jul 2022 12:29:50 +0200
1be5c7
Subject: [PATCH 29/37] pc-bios/s390-ccw/virtio: Introduce a macro for the DASD
1be5c7
 block size
1be5c7
1be5c7
RH-Author: Thomas Huth <thuth@redhat.com>
1be5c7
RH-MergeRequest: 198: pc-bios/s390-ccw: Fix boot from disks with 4k sectors that do not have the typical DASD geometry
1be5c7
RH-Commit: [1/9] 1053101fd5fb591131c567ff98c7d92b63a9dfa9
1be5c7
RH-Bugzilla: 2098076
1be5c7
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
1be5c7
RH-Acked-by: David Hildenbrand <david@redhat.com>
1be5c7
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
1be5c7
1be5c7
Bugzilla: http://bugzilla.redhat.com/2098076
1be5c7
1be5c7
commit 1f2c2ee48e87ea743f8e23cc7569dd26c4cf9623
1be5c7
Author: Thomas Huth <thuth@redhat.com>
1be5c7
Date:   Mon Jul 4 13:18:53 2022 +0200
1be5c7
1be5c7
    pc-bios/s390-ccw/virtio: Introduce a macro for the DASD block size
1be5c7
1be5c7
    Use VIRTIO_DASD_DEFAULT_BLOCK_SIZE instead of the magic value 4096.
1be5c7
1be5c7
    Message-Id: <20220704111903.62400-3-thuth@redhat.com>
1be5c7
    Reviewed-by: Eric Farman <farman@linux.ibm.com>
1be5c7
    Reviewed-by: Cornelia Huck <cohuck@redhat.com>
1be5c7
    Signed-off-by: Thomas Huth <thuth@redhat.com>
1be5c7
1be5c7
Signed-off-by: Thomas Huth <thuth@redhat.com>
1be5c7
---
1be5c7
 pc-bios/s390-ccw/virtio-blkdev.c | 2 +-
1be5c7
 pc-bios/s390-ccw/virtio.h        | 1 +
1be5c7
 2 files changed, 2 insertions(+), 1 deletion(-)
1be5c7
1be5c7
diff --git a/pc-bios/s390-ccw/virtio-blkdev.c b/pc-bios/s390-ccw/virtio-blkdev.c
1be5c7
index 7d35050292..6483307630 100644
1be5c7
--- a/pc-bios/s390-ccw/virtio-blkdev.c
1be5c7
+++ b/pc-bios/s390-ccw/virtio-blkdev.c
1be5c7
@@ -155,7 +155,7 @@ void virtio_assume_eckd(void)
1be5c7
     vdev->config.blk.physical_block_exp = 0;
1be5c7
     switch (vdev->senseid.cu_model) {
1be5c7
     case VIRTIO_ID_BLOCK:
1be5c7
-        vdev->config.blk.blk_size = 4096;
1be5c7
+        vdev->config.blk.blk_size = VIRTIO_DASD_DEFAULT_BLOCK_SIZE;
1be5c7
         break;
1be5c7
     case VIRTIO_ID_SCSI:
1be5c7
         vdev->config.blk.blk_size = vdev->scsi_block_size;
1be5c7
diff --git a/pc-bios/s390-ccw/virtio.h b/pc-bios/s390-ccw/virtio.h
1be5c7
index 19fceb6495..9e410bde6f 100644
1be5c7
--- a/pc-bios/s390-ccw/virtio.h
1be5c7
+++ b/pc-bios/s390-ccw/virtio.h
1be5c7
@@ -198,6 +198,7 @@ extern int virtio_read_many(ulong sector, void *load_addr, int sec_num);
1be5c7
 #define VIRTIO_SECTOR_SIZE 512
1be5c7
 #define VIRTIO_ISO_BLOCK_SIZE 2048
1be5c7
 #define VIRTIO_SCSI_BLOCK_SIZE 512
1be5c7
+#define VIRTIO_DASD_DEFAULT_BLOCK_SIZE 4096
1be5c7
 
1be5c7
 static inline ulong virtio_sector_adjust(ulong sector)
1be5c7
 {
1be5c7
-- 
1be5c7
2.35.3
1be5c7