Home
last modified time | relevance | path

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

/linux-4.19.296/block/
Dcmdline-parser.c11 static int parse_subpart(struct cmdline_subpart **subpart, char *partdef) in parse_subpart() argument
16 *subpart = NULL; in parse_subpart()
72 *subpart = new_subpart; in parse_subpart()
81 struct cmdline_subpart *subpart; in free_subpart() local
83 while (parts->subpart) { in free_subpart()
84 subpart = parts->subpart; in free_subpart()
85 parts->subpart = subpart->next_subpart; in free_subpart()
86 kfree(subpart); in free_subpart()
116 next_subpart = &newparts->subpart; in parse_parts()
136 if (!newparts->subpart) { in parse_parts()
[all …]
/linux-4.19.296/block/partitions/
Dcmdline.c26 static int add_part(int slot, struct cmdline_subpart *subpart, void *param) in add_part() argument
36 put_partition(state, slot, subpart->from >> 9, in add_part()
37 subpart->size >> 9); in add_part()
42 sizeof(subpart->name)); in add_part()
43 strncpy(info->volname, subpart->name, label_min); in add_part()
/linux-4.19.296/include/linux/
Dcmdline-parser.h30 struct cmdline_subpart *subpart; member