| 182 | } |
| 183 | |
| 184 | int32_t |
| 185 | rte_service_set_stats_enable(uint32_t id, int32_t enabled) |
| 186 | { |
| 187 | struct rte_service_spec_impl *s; |
| 188 | SERVICE_VALID_GET_OR_ERR_RET(id, s, 0); |
| 189 | |
| 190 | if (enabled) |
| 191 | s->internal_flags |= SERVICE_F_STATS_ENABLED; |
| 192 | else |
| 193 | s->internal_flags &= ~(SERVICE_F_STATS_ENABLED); |
| 194 | |
| 195 | return 0; |
| 196 | } |
| 197 | |
| 198 | int32_t |
| 199 | rte_service_set_runstate_mapped_check(uint32_t id, int32_t enabled) |
no outgoing calls