| 1675 | } |
| 1676 | |
| 1677 | int |
| 1678 | rte_eal_hugepage_attach(void) |
| 1679 | { |
| 1680 | const struct internal_config *internal_conf = |
| 1681 | eal_get_internal_configuration(); |
| 1682 | |
| 1683 | return internal_conf->legacy_mem ? |
| 1684 | eal_legacy_hugepage_attach() : |
| 1685 | eal_hugepage_attach(); |
| 1686 | } |
| 1687 | |
| 1688 | int |
| 1689 | rte_eal_using_phys_addrs(void) |
no test coverage detected