Lines Matching refs:val
224 unsigned long val, endval;
234 val = simple_strtoull(str, &endp, 0);
244 while (val <= endval) {
245 modify_facility(val, clear);
246 val++;
249 modify_facility(val, clear);
261 char *param, *val;
269 args = next_arg(args, ¶m, &val);
271 if (!strcmp(param, "mem") && val)
272 memory_limit = round_down(memparse(val, NULL), PAGE_SIZE);
274 if (!strcmp(param, "vmalloc") && val) {
275 vmalloc_size = round_up(memparse(val, NULL), _SEGMENT_SIZE);
279 if (!strcmp(param, "dfltcc") && val) {
280 if (!strcmp(val, "off"))
282 else if (!strcmp(val, "on"))
284 else if (!strcmp(val, "def_only"))
286 else if (!strcmp(val, "inf_only"))
288 else if (!strcmp(val, "always"))
292 if (!strcmp(param, "facilities") && val)
293 modify_fac_list(val);
300 rc = kstrtobool(val, &enabled);