* Epoch callback indicating rtentry is safe to destroy */
| 161 | * Epoch callback indicating rtentry is safe to destroy |
| 162 | */ |
| 163 | static void |
| 164 | destroy_rtentry_epoch(epoch_context_t ctx) |
| 165 | { |
| 166 | struct rtentry *rt; |
| 167 | |
| 168 | rt = __containerof(ctx, struct rtentry, rt_epoch_ctx); |
| 169 | |
| 170 | destroy_rtentry(rt); |
| 171 | } |
| 172 | |
| 173 | /* |
| 174 | * Schedule rtentry deletion |
nothing calls this directly
no test coverage detected