1 // SPDX-License-Identifier: GPL-2.0
5 * Code extracted from drivers/block/genhd.c
10 #define SGI_LABEL_MAGIC 0x0be5a941
13 LINUX_RAID_PARTITION
= 0xfd, /* autodetect RAID partition */
16 struct sgi_disklabel
{
17 __be32 magic_mushroom
; /* Big fat spliff... */
18 __be16 root_part_num
; /* Root partition number */
19 __be16 swap_part_num
; /* Swap partition number */
20 s8 boot_file
[16]; /* Name of boot file for ARCS */
21 u8 _unused0
[48]; /* Device parameter useless crapola.. */
23 s8 name
[8]; /* Name of volume */
24 __be32 block_num
; /* Logical block number */
25 __be32 num_bytes
; /* How big, in bytes */
27 struct sgi_partition
{
28 __be32 num_blocks
; /* Size in logical blocks */
29 __be32 first_block
; /* First logical block */
30 __be32 type
; /* Type of this partition */
32 __be32 csum
; /* Disk label checksum */
33 __be32 _unused1
; /* Padding */
36 int sgi_partition(struct parsed_partitions
*state
)
41 unsigned int start
, blocks
;
44 struct sgi_disklabel
*label
;
45 struct sgi_partition
*p
;
46 char b
[BDEVNAME_SIZE
];
48 label
= read_part_sector(state
, 0, §
);
51 p
= &label
->partitions
[0];
52 magic
= label
->magic_mushroom
;
53 if(be32_to_cpu(magic
) != SGI_LABEL_MAGIC
) {
54 /*printk("Dev %s SGI disklabel: bad magic %08x\n",
55 bdevname(bdev, b), be32_to_cpu(magic));*/
59 ui
= ((__be32
*) (label
+ 1)) - 1;
60 for(csum
= 0; ui
>= ((__be32
*) label
);) {
62 csum
+= be32_to_cpu(cs
);
65 printk(KERN_WARNING
"Dev %s SGI disklabel: csum bad, label corrupted\n",
66 bdevname(state
->bdev
, b
));
70 /* All SGI disk labels have 16 partitions, disks under Linux only
71 * have 15 minor's. Luckily there are always a few zero length
72 * partitions which we don't care about so we never overflow the
75 for(i
= 0; i
< 16; i
++, p
++) {
76 blocks
= be32_to_cpu(p
->num_blocks
);
77 start
= be32_to_cpu(p
->first_block
);
79 put_partition(state
, slot
, start
, blocks
);
80 if (be32_to_cpu(p
->type
) == LINUX_RAID_PARTITION
)
81 state
->parts
[slot
].flags
= ADDPART_FLAG_RAID
;
85 strlcat(state
->pp_buf
, "\n", PAGE_SIZE
);