zipl: add skip_prepare flag to struct install_set

Instead of depending on array index to decide whether we
did already the preparation work for installing the bootloader,
add an explicit skip_prepare flag to struct install_set.

Signed-off-by: Sven Schnelle <svens@linux.ibm.com>
Acked-by: Eduard Shishkin <edward6@linux.ibm.com>
Acked-by: Stefan Haberland <sth@linux.ibm.com>
Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
This commit is contained in:
Sven Schnelle
2023-04-21 07:14:59 +00:00
committed by Steffen Eiden
parent 555f3782d4
commit 7301883e69
2 changed files with 10 additions and 11 deletions
+1
View File
@@ -69,6 +69,7 @@ struct install_set {
char *dump_mount_point;
unsigned int dump_tmp_dir_created:1;
unsigned int dump_mounted:1;
unsigned int skip_prepare:1;
struct disk_info *info;
disk_blockptr_t scsi_dump_sb_blockptr;
};