Home
last modified time | relevance | path

Searched refs:subpart (Results 1 – 3 of 3) sorted by relevance

/linux-4.1.27/block/
Dcmdline-parser.c10 static int parse_subpart(struct cmdline_subpart **subpart, char *partdef) in parse_subpart() argument
15 *subpart = NULL; in parse_subpart()
71 *subpart = new_subpart; in parse_subpart()
80 struct cmdline_subpart *subpart; in free_subpart() local
82 while (parts->subpart) { in free_subpart()
83 subpart = parts->subpart; in free_subpart()
84 parts->subpart = subpart->next_subpart; in free_subpart()
85 kfree(subpart); in free_subpart()
115 next_subpart = &newparts->subpart; in parse_parts()
135 if (!newparts->subpart) { in parse_parts()
[all …]
/linux-4.1.27/block/partitions/
Dcmdline.c25 static int add_part(int slot, struct cmdline_subpart *subpart, void *param) in add_part() argument
35 put_partition(state, slot, subpart->from >> 9, in add_part()
36 subpart->size >> 9); in add_part()
41 sizeof(subpart->name)); in add_part()
42 strncpy(info->volname, subpart->name, label_min); in add_part()
/linux-4.1.27/include/linux/
Dcmdline-parser.h29 struct cmdline_subpart *subpart; member