Lines Matching defs:unbound
39 * bound to that CPU, plus one additional set known as the unbound set. Sets
42 * packets. The unbound set also has a linked list of squeues, but no default
46 * are moved to the unbound set. When a CPU comes online, a new squeue set is
90 * unbound from the CPU. This allows the CPU unconfig code to move it to
139 static squeue_set_t **sqset_global_list; /* list 0 is the unbound list */
174 * Create a new squeue_set. If id == -1, then we're creating the unbound set,
180 * new set. We search the unbound set for candidates, and if none are found we
205 * cpu id on the unbound squeue set. If no such squeue is found,
362 * The minimum value of sqset_global_size is 2, one for the unbound
376 * sqset_global_list[0] corresponds to the unbound squeue set.
377 * The computation below picks a set other than the unbound set.
595 * unbound set sqset_global_list[0]. However the squeue won't be
696 * squeues are unboudn and moved to the unbound set.
703 squeue_set_t *sqs, *unbound = sqset_global_list[0];
711 /* Move all squeues to unbound set */
715 sqp->sq_set = unbound;
718 lastsqp->sq_next = unbound->sqs_head;
719 unbound->sqs_head = sqs->sqs_head;
722 /* Also move default squeue to unbound set */
728 sqp->sq_next = unbound->sqs_head;
729 unbound->sqs_head = sqp;
731 sqp->sq_set = unbound;