Lines Matching refs:node
21 struct list_head node;
416 * test_head.next->prev = &good.node
417 * good.node.next = test_head.next
418 * good.node.prev = test_head
419 * test_head.next = good.node
421 list_add(&good.node, &test_head);
426 * the address of &bad.node, and the "where" is the address held
430 list_add(&bad.node, &test_head);
447 list_add(&item.node, &test_head);
450 list_del(&item.node);
453 list_add(&item.node, &test_head);
456 item.node.next = redirection;
457 list_del(&item.node);