/
phprus
/
github_dpdk
Обзор
Документация
Войти
/
phprus
/
github_dpdk
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
lib/ethdev/rte_ethdev_cman.c
127 строк
3 KB
David Marchand
build: mark exported symbols
07 апр 2025, 15:10
07 апр 2025, 15:10
c7020bb
Код
Авторство
О чём код?
/* SPDX-License-Identifier: BSD-3-Clause * Copyright(C) 2022 Marvell International Ltd. */ #include <stdint.h> #include <eal_export.h> #include <rte_errno.h> #include "rte_ethdev.h" #include "ethdev_driver.h" #include "ethdev_private.h" #include "ethdev_trace.h" /* Get congestion management information for a port */ RTE_EXPORT_EXPERIMENTAL_SYMBOL(rte_eth_cman_info_get, 22.11) int rte_eth_cman_info_get(uint16_t port_id, struct rte_eth_cman_info *info) { struct rte_eth_dev *dev; int ret; RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); dev = &rte_eth_devices[port_id]; if (info == NULL) { RTE_ETHDEV_LOG_LINE(ERR, "congestion management info is NULL"); return -EINVAL; } if (dev->dev_ops->cman_info_get == NULL) { RTE_ETHDEV_LOG_LINE(ERR, "Function not implemented"); return -ENOTSUP; } memset(info, 0, sizeof(struct rte_eth_cman_info)); ret = eth_err(port_id, dev->dev_ops->cman_info_get(dev, info)); rte_eth_trace_cman_info_get(port_id, info, ret); return ret; } /* Initialize congestion management structure with default values */ RTE_EXPORT_EXPERIMENTAL_SYMBOL(rte_eth_cman_config_init, 22.11) int rte_eth_cman_config_init(uint16_t port_id, struct rte_eth_cman_config *config) { struct rte_eth_dev *dev; int ret; RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); dev = &rte_eth_devices[port_id]; if (config == NULL) { RTE_ETHDEV_LOG_LINE(ERR, "congestion management config is NULL"); return -EINVAL; } if (dev->dev_ops->cman_config_init == NULL) { RTE_ETHDEV_LOG_LINE(ERR, "Function not implemented"); return -ENOTSUP; } memset(config, 0, sizeof(struct rte_eth_cman_config)); ret = eth_err(port_id, dev->dev_ops->cman_config_init(dev, config)); rte_eth_trace_cman_config_init(port_id, config, ret); return ret; } /* Configure congestion management on a port */ RTE_EXPORT_EXPERIMENTAL_SYMBOL(rte_eth_cman_config_set, 22.11) int rte_eth_cman_config_set(uint16_t port_id, const struct rte_eth_cman_config *config) { struct rte_eth_dev *dev; int ret; RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); dev = &rte_eth_devices[port_id]; if (config == NULL) { RTE_ETHDEV_LOG_LINE(ERR, "congestion management config is NULL"); return -EINVAL; } if (dev->dev_ops->cman_config_set == NULL) { RTE_ETHDEV_LOG_LINE(ERR, "Function not implemented"); return -ENOTSUP; } ret = eth_err(port_id, dev->dev_ops->cman_config_set(dev, config)); rte_eth_trace_cman_config_set(port_id, config, ret); return ret; } /* Retrieve congestion management configuration of a port */ RTE_EXPORT_EXPERIMENTAL_SYMBOL(rte_eth_cman_config_get, 22.11) int rte_eth_cman_config_get(uint16_t port_id, struct rte_eth_cman_config *config) { struct rte_eth_dev *dev; int ret; RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); dev = &rte_eth_devices[port_id]; if (config == NULL) { RTE_ETHDEV_LOG_LINE(ERR, "congestion management config is NULL"); return -EINVAL; } if (dev->dev_ops->cman_config_get == NULL) { RTE_ETHDEV_LOG_LINE(ERR, "Function not implemented"); return -ENOTSUP; } memset(config, 0, sizeof(struct rte_eth_cman_config)); ret = eth_err(port_id, dev->dev_ops->cman_config_get(dev, config)); rte_eth_trace_cman_config_get(port_id, config, ret); return ret; }