diff options
Diffstat (limited to 'block/partitions/efi.c')
-rw-r--r-- | block/partitions/efi.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/block/partitions/efi.c b/block/partitions/efi.c index bd8fb22b2109..7a2b74f0d06f 100644 --- a/block/partitions/efi.c +++ b/block/partitions/efi.c | |||
@@ -151,10 +151,19 @@ static u64 last_lba(struct block_device *bdev) | |||
151 | 151 | ||
152 | static inline int pmbr_part_valid(gpt_mbr_record *part) | 152 | static inline int pmbr_part_valid(gpt_mbr_record *part) |
153 | { | 153 | { |
154 | if (part->os_type == EFI_PMBR_OSTYPE_EFI_GPT && | 154 | if (part->os_type != EFI_PMBR_OSTYPE_EFI_GPT) |
155 | le32_to_cpu(part->start_sector) == 1UL) | 155 | goto invalid; |
156 | return 1; | 156 | |
157 | return 0; | 157 | /* set to 0x00000001 (i.e., the LBA of the GPT Partition Header) */ |
158 | if (le32_to_cpu(part->starting_lba) != GPT_PRIMARY_PARTITION_TABLE_LBA) | ||
159 | goto invalid; | ||
160 | |||
161 | if (le32_to_cpu(part->start_sector) != 1UL) | ||
162 | goto invalid; | ||
163 | |||
164 | return 1; | ||
165 | invalid: | ||
166 | return 0; | ||
158 | } | 167 | } |
159 | 168 | ||
160 | /** | 169 | /** |