| 774 | } |
| 775 | |
| 776 | static void |
| 777 | kdebug_sec_lifetime(struct seclifetime *lft, const char *indent) |
| 778 | { |
| 779 | |
| 780 | IPSEC_ASSERT(lft != NULL, ("null lft")); |
| 781 | if (indent != NULL) |
| 782 | printf("%s", indent); |
| 783 | printf("lifetime { alloc=%u, bytes=%ju addtime=%ju usetime=%ju }\n", |
| 784 | lft->allocations, (uintmax_t)lft->bytes, (uintmax_t)lft->addtime, |
| 785 | (uintmax_t)lft->usetime); |
| 786 | } |
| 787 | |
| 788 | void |
| 789 | kdebug_secash(struct secashead *sah, const char *indent) |
no test coverage detected