1 #include <linux/pagemap.h>
2 #include <linux/blkdev.h>
5 * add_gd_partition adds a partitions details to the devices partition
8 enum { MAX_PART
= 256 };
10 struct parsed_partitions
{
11 char name
[BDEVNAME_SIZE
];
22 put_partition(struct parsed_partitions
*p
, int n
, sector_t from
, sector_t size
)
25 p
->parts
[n
].from
= from
;
26 p
->parts
[n
].size
= size
;
27 printk(" %s%d", p
->name
, n
);
31 extern int warn_no_part
;