diff options
Diffstat (limited to 'block/partitions')
-rw-r--r-- | block/partitions/efi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block/partitions/efi.c b/block/partitions/efi.c index ff5804e2f1d2..c85fc895ecdb 100644 --- a/block/partitions/efi.c +++ b/block/partitions/efi.c | |||
@@ -238,7 +238,7 @@ static gpt_entry *alloc_read_gpt_entries(struct parsed_partitions *state, | |||
238 | le32_to_cpu(gpt->sizeof_partition_entry); | 238 | le32_to_cpu(gpt->sizeof_partition_entry); |
239 | if (!count) | 239 | if (!count) |
240 | return NULL; | 240 | return NULL; |
241 | pte = kzalloc(count, GFP_KERNEL); | 241 | pte = kmalloc(count, GFP_KERNEL); |
242 | if (!pte) | 242 | if (!pte) |
243 | return NULL; | 243 | return NULL; |
244 | 244 | ||
@@ -267,7 +267,7 @@ static gpt_header *alloc_read_gpt_header(struct parsed_partitions *state, | |||
267 | gpt_header *gpt; | 267 | gpt_header *gpt; |
268 | unsigned ssz = bdev_logical_block_size(state->bdev); | 268 | unsigned ssz = bdev_logical_block_size(state->bdev); |
269 | 269 | ||
270 | gpt = kzalloc(ssz, GFP_KERNEL); | 270 | gpt = kmalloc(ssz, GFP_KERNEL); |
271 | if (!gpt) | 271 | if (!gpt) |
272 | return NULL; | 272 | return NULL; |
273 | 273 | ||