| 157 | } |
| 158 | |
| 159 | static void |
| 160 | fsdev_release(struct bcmfs_device *fsdev) |
| 161 | { |
| 162 | if (fsdev == NULL) |
| 163 | return; |
| 164 | |
| 165 | TAILQ_REMOVE(&fsdev_list, fsdev, next); |
| 166 | rte_free(fsdev); |
| 167 | } |
| 168 | |
| 169 | static int |
| 170 | cmprator(const void *a, const void *b) |
no test coverage detected