]> git.karo-electronics.de Git - karo-tx-linux.git/blob - fs/partitions/efi.c
partitions: read whole sector with EFI GPT header
[karo-tx-linux.git] / fs / partitions / efi.c
1 /************************************************************
2  * EFI GUID Partition Table handling
3  * Per Intel EFI Specification v1.02
4  * http://developer.intel.com/technology/efi/efi.htm
5  * efi.[ch] by Matt Domsch <Matt_Domsch@dell.com>
6  *   Copyright 2000,2001,2002,2004 Dell Inc.
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  *
23  * TODO:
24  *
25  * Changelog:
26  * Mon Nov 09 2004 Matt Domsch <Matt_Domsch@dell.com>
27  * - test for valid PMBR and valid PGPT before ever reading
28  *   AGPT, allow override with 'gpt' kernel command line option.
29  * - check for first/last_usable_lba outside of size of disk
30  *
31  * Tue  Mar 26 2002 Matt Domsch <Matt_Domsch@dell.com>
32  * - Ported to 2.5.7-pre1 and 2.5.7-dj2
33  * - Applied patch to avoid fault in alternate header handling
34  * - cleaned up find_valid_gpt
35  * - On-disk structure and copy in memory is *always* LE now - 
36  *   swab fields as needed
37  * - remove print_gpt_header()
38  * - only use first max_p partition entries, to keep the kernel minor number
39  *   and partition numbers tied.
40  *
41  * Mon  Feb 04 2002 Matt Domsch <Matt_Domsch@dell.com>
42  * - Removed __PRIPTR_PREFIX - not being used
43  *
44  * Mon  Jan 14 2002 Matt Domsch <Matt_Domsch@dell.com>
45  * - Ported to 2.5.2-pre11 + library crc32 patch Linus applied
46  *
47  * Thu Dec 6 2001 Matt Domsch <Matt_Domsch@dell.com>
48  * - Added compare_gpts().
49  * - moved le_efi_guid_to_cpus() back into this file.  GPT is the only
50  *   thing that keeps EFI GUIDs on disk.
51  * - Changed gpt structure names and members to be simpler and more Linux-like.
52  * 
53  * Wed Oct 17 2001 Matt Domsch <Matt_Domsch@dell.com>
54  * - Removed CONFIG_DEVFS_VOLUMES_UUID code entirely per Martin Wilck
55  *
56  * Wed Oct 10 2001 Matt Domsch <Matt_Domsch@dell.com>
57  * - Changed function comments to DocBook style per Andreas Dilger suggestion.
58  *
59  * Mon Oct 08 2001 Matt Domsch <Matt_Domsch@dell.com>
60  * - Change read_lba() to use the page cache per Al Viro's work.
61  * - print u64s properly on all architectures
62  * - fixed debug_printk(), now Dprintk()
63  *
64  * Mon Oct 01 2001 Matt Domsch <Matt_Domsch@dell.com>
65  * - Style cleanups
66  * - made most functions static
67  * - Endianness addition
68  * - remove test for second alternate header, as it's not per spec,
69  *   and is unnecessary.  There's now a method to read/write the last
70  *   sector of an odd-sized disk from user space.  No tools have ever
71  *   been released which used this code, so it's effectively dead.
72  * - Per Asit Mallick of Intel, added a test for a valid PMBR.
73  * - Added kernel command line option 'gpt' to override valid PMBR test.
74  *
75  * Wed Jun  6 2001 Martin Wilck <Martin.Wilck@Fujitsu-Siemens.com>
76  * - added devfs volume UUID support (/dev/volumes/uuids) for
77  *   mounting file systems by the partition GUID. 
78  *
79  * Tue Dec  5 2000 Matt Domsch <Matt_Domsch@dell.com>
80  * - Moved crc32() to linux/lib, added efi_crc32().
81  *
82  * Thu Nov 30 2000 Matt Domsch <Matt_Domsch@dell.com>
83  * - Replaced Intel's CRC32 function with an equivalent
84  *   non-license-restricted version.
85  *
86  * Wed Oct 25 2000 Matt Domsch <Matt_Domsch@dell.com>
87  * - Fixed the last_lba() call to return the proper last block
88  *
89  * Thu Oct 12 2000 Matt Domsch <Matt_Domsch@dell.com>
90  * - Thanks to Andries Brouwer for his debugging assistance.
91  * - Code works, detects all the partitions.
92  *
93  ************************************************************/
94 #include <linux/crc32.h>
95 #include "check.h"
96 #include "efi.h"
97
98 /* This allows a kernel command line option 'gpt' to override
99  * the test for invalid PMBR.  Not __initdata because reloading
100  * the partition tables happens after init too.
101  */
102 static int force_gpt;
103 static int __init
104 force_gpt_fn(char *str)
105 {
106         force_gpt = 1;
107         return 1;
108 }
109 __setup("gpt", force_gpt_fn);
110
111
112 /**
113  * efi_crc32() - EFI version of crc32 function
114  * @buf: buffer to calculate crc32 of
115  * @len - length of buf
116  *
117  * Description: Returns EFI-style CRC32 value for @buf
118  * 
119  * This function uses the little endian Ethernet polynomial
120  * but seeds the function with ~0, and xor's with ~0 at the end.
121  * Note, the EFI Specification, v1.02, has a reference to
122  * Dr. Dobbs Journal, May 1994 (actually it's in May 1992).
123  */
124 static inline u32
125 efi_crc32(const void *buf, unsigned long len)
126 {
127         return (crc32(~0L, buf, len) ^ ~0L);
128 }
129
130 /**
131  * last_lba(): return number of last logical block of device
132  * @bdev: block device
133  * 
134  * Description: Returns last LBA value on success, 0 on error.
135  * This is stored (by sd and ide-geometry) in
136  *  the part[0] entry for this disk, and is the number of
137  *  physical sectors available on the disk.
138  */
139 static u64
140 last_lba(struct block_device *bdev)
141 {
142         if (!bdev || !bdev->bd_inode)
143                 return 0;
144         return (bdev->bd_inode->i_size >> 9) - 1ULL;
145 }
146
147 static inline int
148 pmbr_part_valid(struct partition *part)
149 {
150         if (part->sys_ind == EFI_PMBR_OSTYPE_EFI_GPT &&
151             le32_to_cpu(part->start_sect) == 1UL)
152                 return 1;
153         return 0;
154 }
155
156 /**
157  * is_pmbr_valid(): test Protective MBR for validity
158  * @mbr: pointer to a legacy mbr structure
159  *
160  * Description: Returns 1 if PMBR is valid, 0 otherwise.
161  * Validity depends on two things:
162  *  1) MSDOS signature is in the last two bytes of the MBR
163  *  2) One partition of type 0xEE is found
164  */
165 static int
166 is_pmbr_valid(legacy_mbr *mbr)
167 {
168         int i;
169         if (!mbr || le16_to_cpu(mbr->signature) != MSDOS_MBR_SIGNATURE)
170                 return 0;
171         for (i = 0; i < 4; i++)
172                 if (pmbr_part_valid(&mbr->partition_record[i]))
173                         return 1;
174         return 0;
175 }
176
177 /**
178  * read_lba(): Read bytes from disk, starting at given LBA
179  * @bdev
180  * @lba
181  * @buffer
182  * @size_t
183  *
184  * Description:  Reads @count bytes from @bdev into @buffer.
185  * Returns number of bytes read on success, 0 on error.
186  */
187 static size_t
188 read_lba(struct block_device *bdev, u64 lba, u8 * buffer, size_t count)
189 {
190         size_t totalreadcount = 0;
191
192         if (!bdev || !buffer || lba > last_lba(bdev))
193                 return 0;
194
195         while (count) {
196                 int copied = 512;
197                 Sector sect;
198                 unsigned char *data = read_dev_sector(bdev, lba++, &sect);
199                 if (!data)
200                         break;
201                 if (copied > count)
202                         copied = count;
203                 memcpy(buffer, data, copied);
204                 put_dev_sector(sect);
205                 buffer += copied;
206                 totalreadcount +=copied;
207                 count -= copied;
208         }
209         return totalreadcount;
210 }
211
212 /**
213  * alloc_read_gpt_entries(): reads partition entries from disk
214  * @bdev
215  * @gpt - GPT header
216  * 
217  * Description: Returns ptes on success,  NULL on error.
218  * Allocates space for PTEs based on information found in @gpt.
219  * Notes: remember to free pte when you're done!
220  */
221 static gpt_entry *
222 alloc_read_gpt_entries(struct block_device *bdev, gpt_header *gpt)
223 {
224         size_t count;
225         gpt_entry *pte;
226         if (!bdev || !gpt)
227                 return NULL;
228
229         count = le32_to_cpu(gpt->num_partition_entries) *
230                 le32_to_cpu(gpt->sizeof_partition_entry);
231         if (!count)
232                 return NULL;
233         pte = kzalloc(count, GFP_KERNEL);
234         if (!pte)
235                 return NULL;
236
237         if (read_lba(bdev, le64_to_cpu(gpt->partition_entry_lba),
238                      (u8 *) pte,
239                      count) < count) {
240                 kfree(pte);
241                 pte=NULL;
242                 return NULL;
243         }
244         return pte;
245 }
246
247 /**
248  * alloc_read_gpt_header(): Allocates GPT header, reads into it from disk
249  * @bdev
250  * @lba is the Logical Block Address of the partition table
251  * 
252  * Description: returns GPT header on success, NULL on error.   Allocates
253  * and fills a GPT header starting at @ from @bdev.
254  * Note: remember to free gpt when finished with it.
255  */
256 static gpt_header *
257 alloc_read_gpt_header(struct block_device *bdev, u64 lba)
258 {
259         gpt_header *gpt;
260         unsigned ssz = bdev_logical_block_size(bdev);
261
262         if (!bdev)
263                 return NULL;
264
265         gpt = kzalloc(ssz, GFP_KERNEL);
266         if (!gpt)
267                 return NULL;
268
269         if (read_lba(bdev, lba, (u8 *) gpt, ssz) < ssz) {
270                 kfree(gpt);
271                 gpt=NULL;
272                 return NULL;
273         }
274
275         return gpt;
276 }
277
278 /**
279  * is_gpt_valid() - tests one GPT header and PTEs for validity
280  * @bdev
281  * @lba is the logical block address of the GPT header to test
282  * @gpt is a GPT header ptr, filled on return.
283  * @ptes is a PTEs ptr, filled on return.
284  *
285  * Description: returns 1 if valid,  0 on error.
286  * If valid, returns pointers to newly allocated GPT header and PTEs.
287  */
288 static int
289 is_gpt_valid(struct block_device *bdev, u64 lba,
290              gpt_header **gpt, gpt_entry **ptes)
291 {
292         u32 crc, origcrc;
293         u64 lastlba;
294
295         if (!bdev || !gpt || !ptes)
296                 return 0;
297         if (!(*gpt = alloc_read_gpt_header(bdev, lba)))
298                 return 0;
299
300         /* Check the GUID Partition Table signature */
301         if (le64_to_cpu((*gpt)->signature) != GPT_HEADER_SIGNATURE) {
302                 pr_debug("GUID Partition Table Header signature is wrong:"
303                          "%lld != %lld\n",
304                          (unsigned long long)le64_to_cpu((*gpt)->signature),
305                          (unsigned long long)GPT_HEADER_SIGNATURE);
306                 goto fail;
307         }
308
309         /* Check the GUID Partition Table CRC */
310         origcrc = le32_to_cpu((*gpt)->header_crc32);
311         (*gpt)->header_crc32 = 0;
312         crc = efi_crc32((const unsigned char *) (*gpt), le32_to_cpu((*gpt)->header_size));
313
314         if (crc != origcrc) {
315                 pr_debug("GUID Partition Table Header CRC is wrong: %x != %x\n",
316                          crc, origcrc);
317                 goto fail;
318         }
319         (*gpt)->header_crc32 = cpu_to_le32(origcrc);
320
321         /* Check that the my_lba entry points to the LBA that contains
322          * the GUID Partition Table */
323         if (le64_to_cpu((*gpt)->my_lba) != lba) {
324                 pr_debug("GPT my_lba incorrect: %lld != %lld\n",
325                          (unsigned long long)le64_to_cpu((*gpt)->my_lba),
326                          (unsigned long long)lba);
327                 goto fail;
328         }
329
330         /* Check the first_usable_lba and last_usable_lba are
331          * within the disk.
332          */
333         lastlba = last_lba(bdev);
334         if (le64_to_cpu((*gpt)->first_usable_lba) > lastlba) {
335                 pr_debug("GPT: first_usable_lba incorrect: %lld > %lld\n",
336                          (unsigned long long)le64_to_cpu((*gpt)->first_usable_lba),
337                          (unsigned long long)lastlba);
338                 goto fail;
339         }
340         if (le64_to_cpu((*gpt)->last_usable_lba) > lastlba) {
341                 pr_debug("GPT: last_usable_lba incorrect: %lld > %lld\n",
342                          (unsigned long long)le64_to_cpu((*gpt)->last_usable_lba),
343                          (unsigned long long)lastlba);
344                 goto fail;
345         }
346
347         if (!(*ptes = alloc_read_gpt_entries(bdev, *gpt)))
348                 goto fail;
349
350         /* Check the GUID Partition Entry Array CRC */
351         crc = efi_crc32((const unsigned char *) (*ptes),
352                         le32_to_cpu((*gpt)->num_partition_entries) *
353                         le32_to_cpu((*gpt)->sizeof_partition_entry));
354
355         if (crc != le32_to_cpu((*gpt)->partition_entry_array_crc32)) {
356                 pr_debug("GUID Partitition Entry Array CRC check failed.\n");
357                 goto fail_ptes;
358         }
359
360         /* We're done, all's well */
361         return 1;
362
363  fail_ptes:
364         kfree(*ptes);
365         *ptes = NULL;
366  fail:
367         kfree(*gpt);
368         *gpt = NULL;
369         return 0;
370 }
371
372 /**
373  * is_pte_valid() - tests one PTE for validity
374  * @pte is the pte to check
375  * @lastlba is last lba of the disk
376  *
377  * Description: returns 1 if valid,  0 on error.
378  */
379 static inline int
380 is_pte_valid(const gpt_entry *pte, const u64 lastlba)
381 {
382         if ((!efi_guidcmp(pte->partition_type_guid, NULL_GUID)) ||
383             le64_to_cpu(pte->starting_lba) > lastlba         ||
384             le64_to_cpu(pte->ending_lba)   > lastlba)
385                 return 0;
386         return 1;
387 }
388
389 /**
390  * compare_gpts() - Search disk for valid GPT headers and PTEs
391  * @pgpt is the primary GPT header
392  * @agpt is the alternate GPT header
393  * @lastlba is the last LBA number
394  * Description: Returns nothing.  Sanity checks pgpt and agpt fields
395  * and prints warnings on discrepancies.
396  * 
397  */
398 static void
399 compare_gpts(gpt_header *pgpt, gpt_header *agpt, u64 lastlba)
400 {
401         int error_found = 0;
402         if (!pgpt || !agpt)
403                 return;
404         if (le64_to_cpu(pgpt->my_lba) != le64_to_cpu(agpt->alternate_lba)) {
405                 printk(KERN_WARNING
406                        "GPT:Primary header LBA != Alt. header alternate_lba\n");
407                 printk(KERN_WARNING "GPT:%lld != %lld\n",
408                        (unsigned long long)le64_to_cpu(pgpt->my_lba),
409                        (unsigned long long)le64_to_cpu(agpt->alternate_lba));
410                 error_found++;
411         }
412         if (le64_to_cpu(pgpt->alternate_lba) != le64_to_cpu(agpt->my_lba)) {
413                 printk(KERN_WARNING
414                        "GPT:Primary header alternate_lba != Alt. header my_lba\n");
415                 printk(KERN_WARNING "GPT:%lld != %lld\n",
416                        (unsigned long long)le64_to_cpu(pgpt->alternate_lba),
417                        (unsigned long long)le64_to_cpu(agpt->my_lba));
418                 error_found++;
419         }
420         if (le64_to_cpu(pgpt->first_usable_lba) !=
421             le64_to_cpu(agpt->first_usable_lba)) {
422                 printk(KERN_WARNING "GPT:first_usable_lbas don't match.\n");
423                 printk(KERN_WARNING "GPT:%lld != %lld\n",
424                        (unsigned long long)le64_to_cpu(pgpt->first_usable_lba),
425                        (unsigned long long)le64_to_cpu(agpt->first_usable_lba));
426                 error_found++;
427         }
428         if (le64_to_cpu(pgpt->last_usable_lba) !=
429             le64_to_cpu(agpt->last_usable_lba)) {
430                 printk(KERN_WARNING "GPT:last_usable_lbas don't match.\n");
431                 printk(KERN_WARNING "GPT:%lld != %lld\n",
432                        (unsigned long long)le64_to_cpu(pgpt->last_usable_lba),
433                        (unsigned long long)le64_to_cpu(agpt->last_usable_lba));
434                 error_found++;
435         }
436         if (efi_guidcmp(pgpt->disk_guid, agpt->disk_guid)) {
437                 printk(KERN_WARNING "GPT:disk_guids don't match.\n");
438                 error_found++;
439         }
440         if (le32_to_cpu(pgpt->num_partition_entries) !=
441             le32_to_cpu(agpt->num_partition_entries)) {
442                 printk(KERN_WARNING "GPT:num_partition_entries don't match: "
443                        "0x%x != 0x%x\n",
444                        le32_to_cpu(pgpt->num_partition_entries),
445                        le32_to_cpu(agpt->num_partition_entries));
446                 error_found++;
447         }
448         if (le32_to_cpu(pgpt->sizeof_partition_entry) !=
449             le32_to_cpu(agpt->sizeof_partition_entry)) {
450                 printk(KERN_WARNING
451                        "GPT:sizeof_partition_entry values don't match: "
452                        "0x%x != 0x%x\n",
453                        le32_to_cpu(pgpt->sizeof_partition_entry),
454                        le32_to_cpu(agpt->sizeof_partition_entry));
455                 error_found++;
456         }
457         if (le32_to_cpu(pgpt->partition_entry_array_crc32) !=
458             le32_to_cpu(agpt->partition_entry_array_crc32)) {
459                 printk(KERN_WARNING
460                        "GPT:partition_entry_array_crc32 values don't match: "
461                        "0x%x != 0x%x\n",
462                        le32_to_cpu(pgpt->partition_entry_array_crc32),
463                        le32_to_cpu(agpt->partition_entry_array_crc32));
464                 error_found++;
465         }
466         if (le64_to_cpu(pgpt->alternate_lba) != lastlba) {
467                 printk(KERN_WARNING
468                        "GPT:Primary header thinks Alt. header is not at the end of the disk.\n");
469                 printk(KERN_WARNING "GPT:%lld != %lld\n",
470                         (unsigned long long)le64_to_cpu(pgpt->alternate_lba),
471                         (unsigned long long)lastlba);
472                 error_found++;
473         }
474
475         if (le64_to_cpu(agpt->my_lba) != lastlba) {
476                 printk(KERN_WARNING
477                        "GPT:Alternate GPT header not at the end of the disk.\n");
478                 printk(KERN_WARNING "GPT:%lld != %lld\n",
479                         (unsigned long long)le64_to_cpu(agpt->my_lba),
480                         (unsigned long long)lastlba);
481                 error_found++;
482         }
483
484         if (error_found)
485                 printk(KERN_WARNING
486                        "GPT: Use GNU Parted to correct GPT errors.\n");
487         return;
488 }
489
490 /**
491  * find_valid_gpt() - Search disk for valid GPT headers and PTEs
492  * @bdev
493  * @gpt is a GPT header ptr, filled on return.
494  * @ptes is a PTEs ptr, filled on return.
495  * Description: Returns 1 if valid, 0 on error.
496  * If valid, returns pointers to newly allocated GPT header and PTEs.
497  * Validity depends on PMBR being valid (or being overridden by the
498  * 'gpt' kernel command line option) and finding either the Primary
499  * GPT header and PTEs valid, or the Alternate GPT header and PTEs
500  * valid.  If the Primary GPT header is not valid, the Alternate GPT header
501  * is not checked unless the 'gpt' kernel command line option is passed.
502  * This protects against devices which misreport their size, and forces
503  * the user to decide to use the Alternate GPT.
504  */
505 static int
506 find_valid_gpt(struct block_device *bdev, gpt_header **gpt, gpt_entry **ptes)
507 {
508         int good_pgpt = 0, good_agpt = 0, good_pmbr = 0;
509         gpt_header *pgpt = NULL, *agpt = NULL;
510         gpt_entry *pptes = NULL, *aptes = NULL;
511         legacy_mbr *legacymbr;
512         u64 lastlba;
513         if (!bdev || !gpt || !ptes)
514                 return 0;
515
516         lastlba = last_lba(bdev);
517         if (!force_gpt) {
518                 /* This will be added to the EFI Spec. per Intel after v1.02. */
519                 legacymbr = kzalloc(sizeof (*legacymbr), GFP_KERNEL);
520                 if (legacymbr) {
521                         read_lba(bdev, 0, (u8 *) legacymbr,
522                                  sizeof (*legacymbr));
523                         good_pmbr = is_pmbr_valid(legacymbr);
524                         kfree(legacymbr);
525                 }
526                 if (!good_pmbr)
527                         goto fail;
528         }
529
530         good_pgpt = is_gpt_valid(bdev, GPT_PRIMARY_PARTITION_TABLE_LBA,
531                                  &pgpt, &pptes);
532         if (good_pgpt)
533                 good_agpt = is_gpt_valid(bdev,
534                                          le64_to_cpu(pgpt->alternate_lba),
535                                          &agpt, &aptes);
536         if (!good_agpt && force_gpt)
537                 good_agpt = is_gpt_valid(bdev, lastlba,
538                                          &agpt, &aptes);
539
540         /* The obviously unsuccessful case */
541         if (!good_pgpt && !good_agpt)
542                 goto fail;
543
544         compare_gpts(pgpt, agpt, lastlba);
545
546         /* The good cases */
547         if (good_pgpt) {
548                 *gpt  = pgpt;
549                 *ptes = pptes;
550                 kfree(agpt);
551                 kfree(aptes);
552                 if (!good_agpt) {
553                         printk(KERN_WARNING 
554                                "Alternate GPT is invalid, "
555                                "using primary GPT.\n");
556                 }
557                 return 1;
558         }
559         else if (good_agpt) {
560                 *gpt  = agpt;
561                 *ptes = aptes;
562                 kfree(pgpt);
563                 kfree(pptes);
564                 printk(KERN_WARNING 
565                        "Primary GPT is invalid, using alternate GPT.\n");
566                 return 1;
567         }
568
569  fail:
570         kfree(pgpt);
571         kfree(agpt);
572         kfree(pptes);
573         kfree(aptes);
574         *gpt = NULL;
575         *ptes = NULL;
576         return 0;
577 }
578
579 /**
580  * efi_partition(struct parsed_partitions *state, struct block_device *bdev)
581  * @state
582  * @bdev
583  *
584  * Description: called from check.c, if the disk contains GPT
585  * partitions, sets up partition entries in the kernel.
586  *
587  * If the first block on the disk is a legacy MBR,
588  * it will get handled by msdos_partition().
589  * If it's a Protective MBR, we'll handle it here.
590  *
591  * We do not create a Linux partition for GPT, but
592  * only for the actual data partitions.
593  * Returns:
594  * -1 if unable to read the partition table
595  *  0 if this isn't our partition table
596  *  1 if successful
597  *
598  */
599 int
600 efi_partition(struct parsed_partitions *state, struct block_device *bdev)
601 {
602         gpt_header *gpt = NULL;
603         gpt_entry *ptes = NULL;
604         u32 i;
605
606         if (!find_valid_gpt(bdev, &gpt, &ptes) || !gpt || !ptes) {
607                 kfree(gpt);
608                 kfree(ptes);
609                 return 0;
610         }
611
612         pr_debug("GUID Partition Table is valid!  Yea!\n");
613
614         for (i = 0; i < le32_to_cpu(gpt->num_partition_entries) && i < state->limit-1; i++) {
615                 if (!is_pte_valid(&ptes[i], last_lba(bdev)))
616                         continue;
617
618                 put_partition(state, i+1, le64_to_cpu(ptes[i].starting_lba),
619                                  (le64_to_cpu(ptes[i].ending_lba) -
620                                   le64_to_cpu(ptes[i].starting_lba) +
621                                   1ULL));
622
623                 /* If this is a RAID volume, tell md */
624                 if (!efi_guidcmp(ptes[i].partition_type_guid,
625                                  PARTITION_LINUX_RAID_GUID))
626                         state->parts[i+1].flags = 1;
627         }
628         kfree(ptes);
629         kfree(gpt);
630         printk("\n");
631         return 1;
632 }