Lines Matching refs:val
196 unsigned long val, endval;
206 val = simple_strtoull(str, &endp, 0);
216 while (val <= endval) {
217 modify_facility(val, clear);
218 val++;
221 modify_facility(val, clear);
233 char *param, *val;
241 args = next_arg(args, ¶m, &val);
243 if (!strcmp(param, "mem") && val) {
244 memory_end = round_down(memparse(val, NULL), PAGE_SIZE);
248 if (!strcmp(param, "vmalloc") && val)
249 vmalloc_size = round_up(memparse(val, NULL), PAGE_SIZE);
251 if (!strcmp(param, "dfltcc") && val) {
252 if (!strcmp(val, "off"))
254 else if (!strcmp(val, "on"))
256 else if (!strcmp(val, "def_only"))
258 else if (!strcmp(val, "inf_only"))
260 else if (!strcmp(val, "always"))
265 rc = kstrtobool(val, &enabled);
270 if (!strcmp(param, "facilities") && val)
271 modify_fac_list(val);
278 rc = kstrtobool(val, &enabled);