]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/dpdk/lib/librte_eal/freebsd/eal_dev.c
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / spdk / dpdk / lib / librte_eal / freebsd / eal_dev.c
CommitLineData
11fdf7f2
TL
1/* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018 Intel Corporation
3 */
4
5#include <rte_log.h>
6#include <rte_compat.h>
7#include <rte_dev.h>
8
f67539c2 9int
11fdf7f2
TL
10rte_dev_event_monitor_start(void)
11{
12 RTE_LOG(ERR, EAL, "Device event is not supported for FreeBSD\n");
13 return -1;
14}
15
f67539c2 16int
11fdf7f2
TL
17rte_dev_event_monitor_stop(void)
18{
19 RTE_LOG(ERR, EAL, "Device event is not supported for FreeBSD\n");
20 return -1;
21}
9f95a23c 22
f67539c2 23int
9f95a23c
TL
24rte_dev_hotplug_handle_enable(void)
25{
26 RTE_LOG(ERR, EAL, "Device event is not supported for FreeBSD\n");
27 return -1;
28}
29
f67539c2 30int
9f95a23c
TL
31rte_dev_hotplug_handle_disable(void)
32{
33 RTE_LOG(ERR, EAL, "Device event is not supported for FreeBSD\n");
34 return -1;
35}