* helper function, return instruction index for the given node. */
| 1783 | * helper function, return instruction index for the given node. |
| 1784 | */ |
| 1785 | static uint32_t |
| 1786 | get_node_idx(const struct bpf_verifier *bvf, const struct inst_node *node) |
| 1787 | { |
| 1788 | return node - bvf->in; |
| 1789 | } |
| 1790 | |
| 1791 | /* |
| 1792 | * helper function, used to walk through constructed CFG. |
no outgoing calls
no test coverage detected