Lines Matching refs:name

646         .name = "cgroup.procs",
655 .name = "cgroup.clone_children",
660 .name = "cgroup.sane_behavior",
665 .name = "tasks",
674 .name = "notify_on_release",
679 .name = "release_agent",
789 * configured release agent with the name of the cgroup (path
924 if (strlen(root->name)) {
925 seq_show_option(seq, "name", root->name);
944 fsparam_string("name", Opt_name),
977 return invalfc(fc, "Unknown subsys name '%s'", param->key);
1023 /* Can't specify an empty name */
1025 return invalfc(fc, "Empty name");
1039 return invalfc(fc, "Invalid name");
1042 if (ctx->name) {
1043 return invalfc(fc, "name respecified");
1045 ctx->name = param->string;
1070 * In absense of 'none', 'name=' or subsystem name options,
1073 if (!ctx->subsys_mask && !ctx->none && !ctx->name) {
1078 /* Mutually exclusive option 'all' + subsystem name */
1080 return invalfc(fc, "subsys name conflicts with all");
1087 * We either have to specify by name or by subsystems. (So all
1088 * empty hierarchies must have a name).
1090 if (!ctx->subsys_mask && !ctx->name) {
1091 return invalfc(fc, "Need name or subsystem set");
1134 /* Don't allow flags or name to change at remount */
1135 if ((ctx->flags ^ root->flags) || (ctx->name && strcmp(ctx->name, root->name))) {
1136 errorfc(fc, "option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"", ctx->flags, ctx->name ?: "",
1137 root->flags, root->name);
1225 * If we asked for a name then it must match. Also, if
1226 * name matches but sybsys_mask doesn't, we should fail.
1227 * Remember whether name matched.
1229 if (ctx->name) {
1230 if (strcmp(ctx->name, root->name)) {
1256 * No such thing, create a new one. name= matching without subsys
1354 if (strcmp(token, ss->name) && strcmp(token, ss->legacy_name)) {