* Include src bitset in dst bitset */
| 217 | * Include src bitset in dst bitset |
| 218 | */ |
| 219 | static void |
| 220 | acl_include(struct rte_acl_bitset *dst, struct rte_acl_bitset *src, bits_t mask) |
| 221 | { |
| 222 | uint32_t n; |
| 223 | |
| 224 | for (n = 0; n < RTE_ACL_BIT_SET_SIZE; n++) |
| 225 | dst->bits[n] = (dst->bits[n] & mask) | src->bits[n]; |
| 226 | } |
| 227 | |
| 228 | /* |
| 229 | * Set dst to bits of src1 that are not in src2 |
no outgoing calls
no test coverage detected