* Links lltable to global llt list. */
| 591 | * Links lltable to global llt list. |
| 592 | */ |
| 593 | void |
| 594 | lltable_link(struct lltable *llt) |
| 595 | { |
| 596 | |
| 597 | LLTABLE_LIST_WLOCK(); |
| 598 | SLIST_INSERT_HEAD(&V_lltables, llt, llt_link); |
| 599 | LLTABLE_LIST_WUNLOCK(); |
| 600 | } |
| 601 | |
| 602 | static void |
| 603 | lltable_unlink(struct lltable *llt) |
no outgoing calls
no test coverage detected