setup max possible with this mask bounds */
| 141 | |
| 142 | /* setup max possible with this mask bounds */ |
| 143 | static void |
| 144 | eval_umax_bound(struct bpf_reg_val *rv, uint64_t mask) |
| 145 | { |
| 146 | rv->u.max = mask; |
| 147 | rv->u.min = 0; |
| 148 | } |
| 149 | |
| 150 | static void |
| 151 | eval_smax_bound(struct bpf_reg_val *rv, uint64_t mask) |
no outgoing calls
no test coverage detected