newparts           96 block/cmdline-parser.c 	struct cmdline_parts *newparts;
newparts          101 block/cmdline-parser.c 	newparts = kzalloc(sizeof(struct cmdline_parts), GFP_KERNEL);
newparts          102 block/cmdline-parser.c 	if (!newparts)
newparts          111 block/cmdline-parser.c 	length = min_t(int, next - bdevdef, sizeof(newparts->name) - 1);
newparts          112 block/cmdline-parser.c 	strncpy(newparts->name, bdevdef, length);
newparts          113 block/cmdline-parser.c 	newparts->name[length] = '\0';
newparts          114 block/cmdline-parser.c 	newparts->nr_subparts = 0;
newparts          116 block/cmdline-parser.c 	next_subpart = &newparts->subpart;
newparts          132 block/cmdline-parser.c 		newparts->nr_subparts++;
newparts          136 block/cmdline-parser.c 	if (!newparts->subpart) {
newparts          142 block/cmdline-parser.c 	*parts = newparts;
newparts          146 block/cmdline-parser.c 	free_subpart(newparts);
newparts          147 block/cmdline-parser.c 	kfree(newparts);