Home | History | Annotate | Download | only in fio

Lines Matching refs:nodelist

586 	char *nodelist;
592 nodelist = strchr(input, ':');
593 if (nodelist) {
595 *nodelist++ = '\0';
612 * Insist on a nodelist of one node only
614 if (nodelist) {
615 char *rest = nodelist;
629 * Default to online nodes with memory if no nodelist
631 if (!nodelist)
632 nodelist = strdup("all");
637 * Don't allow a nodelist
639 if (nodelist) {
640 log_err("fio: NO nodelist for \'local\'\n");
646 * Insist on a nodelist
648 if (!nodelist) {
649 log_err("fio: a nodelist is needed for \'bind\'\n");
663 td->o.numa_mem_prefer_node = atoi(nodelist);
667 verify_bitmask = numa_parse_nodestring(nodelist);
673 td->o.numa_memnodes = strdup(nodelist);