Home
last modified time | relevance | path

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

/linux-4.19.296/include/linux/
Dcmdline-parser.h27 struct cmdline_parts { struct
31 struct cmdline_parts *next_parts; argument
34 void cmdline_parts_free(struct cmdline_parts **parts);
36 int cmdline_parts_parse(struct cmdline_parts **parts, const char *cmdline);
38 struct cmdline_parts *cmdline_parts_find(struct cmdline_parts *parts,
41 int cmdline_parts_set(struct cmdline_parts *parts, sector_t disk_size,
/linux-4.19.296/block/
Dcmdline-parser.c79 static void free_subpart(struct cmdline_parts *parts) in free_subpart()
90 static int parse_parts(struct cmdline_parts **parts, const char *bdevdef) in parse_parts()
96 struct cmdline_parts *newparts; in parse_parts()
101 newparts = kzalloc(sizeof(struct cmdline_parts), GFP_KERNEL); in parse_parts()
151 void cmdline_parts_free(struct cmdline_parts **parts) in cmdline_parts_free()
153 struct cmdline_parts *next_parts; in cmdline_parts_free()
164 int cmdline_parts_parse(struct cmdline_parts **parts, const char *cmdline) in cmdline_parts_parse()
170 struct cmdline_parts **next_parts; in cmdline_parts_parse()
212 struct cmdline_parts *cmdline_parts_find(struct cmdline_parts *parts, in cmdline_parts_find()
226 int cmdline_parts_set(struct cmdline_parts *parts, sector_t disk_size, in cmdline_parts_set()
/linux-4.19.296/block/partitions/
Dcmdline.c24 static struct cmdline_parts *bdev_parts;
128 struct cmdline_parts *parts; in cmdline_partition()