/
phprus
/
github_dpdk
Обзор
Документация
Войти
/
phprus
/
github_dpdk
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
drivers/net/virtio/meson.build
53 строки
1 KB
Bruce Richardson
vhost: simplify use of pragmas
29 авг 2025, 16:49
29 авг 2025, 16:49
4a04a34
Код
Авторство
О чём код?
# SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Intel Corporation if is_windows build = false reason = 'not supported on Windows' subdir_done() endif if dpdk_conf.get('RTE_IOVA_IN_MBUF') == 0 subdir_done() endif sources += files( 'virtio.c', 'virtio_cvq.c', 'virtio_ethdev.c', 'virtio_pci_ethdev.c', 'virtio_pci.c', 'virtio_rxtx.c', 'virtio_rxtx_simple.c', 'virtqueue.c', ) deps += ['kvargs', 'bus_pci'] cflags += no_wvla_cflag if arch_subdir == 'x86' if cc_has_avx512 cflags += ['-DVIRTIO_RXTX_PACKED_VEC'] sources_avx512 += files('virtio_rxtx_packed.c') endif cflags += ['-DVIRTIO_RXTX_VEC'] sources += files('virtio_rxtx_simple_sse.c') elif arch_subdir == 'ppc' cflags += ['-DVIRTIO_RXTX_VEC'] sources += files('virtio_rxtx_simple_altivec.c') elif arch_subdir == 'arm' and dpdk_conf.get('RTE_ARCH_64') cflags += ['-DVIRTIO_RXTX_PACKED_VEC'] sources += files('virtio_rxtx_packed.c') cflags += ['-DVIRTIO_RXTX_VEC'] sources += files('virtio_rxtx_simple_neon.c') endif if is_linux sources += files('virtio_user_ethdev.c', 'virtio_user/vhost_kernel.c', 'virtio_user/vhost_kernel_tap.c', 'virtio_user/vhost_user.c', 'virtio_user/vhost_vdpa.c', 'virtio_user/virtio_user_dev.c') deps += ['bus_vdev'] endif