| 1836 | } |
| 1837 | |
| 1838 | static void |
| 1839 | free_bw_list(struct bw_meter *list) |
| 1840 | { |
| 1841 | while (list != NULL) { |
| 1842 | struct bw_meter *x = list; |
| 1843 | |
| 1844 | list = list->bm_mfc_next; |
| 1845 | unschedule_bw_meter(x); |
| 1846 | free(x, M_BWMETER); |
| 1847 | } |
| 1848 | } |
| 1849 | |
| 1850 | /* |
| 1851 | * Delete one or multiple bw_meter entries |
no test coverage detected