1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#include <linux/pagemap.h>
#include <linux/blkdev.h>
#define PART_NAME_SIZE 128
/*
* add_gd_partition adds a partitions details to the devices partition
* description.
*/
struct parsed_partitions {
struct block_device *bdev;
char name[BDEVNAME_SIZE];
struct {
sector_t from;
sector_t size;
int flags;
char name[PART_NAME_SIZE];
} parts[DISK_MAX_PARTS];
int next;
int limit;
bool access_beyond_eod;
char *pp_buf;
};
static inline void *read_part_sector(struct parsed_partitions *state,
sector_t n, Sector *p)
{
if (n >= get_capacity(state->bdev->bd_disk)) {
state->access_beyond_eod = true;
return NULL;
}
return read_dev_sector(state->bdev, n, p);
}
static inline void
put_named_partition(struct parsed_partitions *p, int n, sector_t from,
sector_t size, const char *name, size_t name_size)
{
if (n < p->limit) {
char tmp[1 + BDEVNAME_SIZE + 10 + 1];
p->parts[n].from = from;
p->parts[n].size = size;
snprintf(tmp, sizeof(tmp), " %s%d", p->name, n);
strlcat(p->pp_buf, tmp, PAGE_SIZE);
if (name) {
if (name_size > PART_NAME_SIZE - 1)
name_size = PART_NAME_SIZE - 1;
memcpy(p->parts[n].name, name, name_size);
p->parts[n].name[name_size] = 0;
snprintf(tmp, sizeof(tmp), " (%s)", p->parts[n].name);
strlcat(p->pp_buf, tmp, PAGE_SIZE);
}
}
}
static inline void
put_partition(struct parsed_partitions *p, int n, sector_t from, sector_t size)
{
put_named_partition(p, n, from, size, NULL, 0);
}
extern int warn_no_part;
|