mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 23:24:05 +08:00
64b9f64f80
This patch introduce a vDPA driver for virtio-pci device. It bridges the virtio-pci control command to the vDPA bus. This will be used for features prototyping and testing. Note that get/restore virtqueue state is not supported which needs extension on the virtio specification. Signed-off-by: Jason Wang <jasowang@redhat.com> Link: https://lore.kernel.org/r/20210223061905.422659-4-jasowang@redhat.com Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
7 lines
206 B
Makefile
7 lines
206 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_VDPA) += vdpa.o
|
|
obj-$(CONFIG_VDPA_SIM) += vdpa_sim/
|
|
obj-$(CONFIG_IFCVF) += ifcvf/
|
|
obj-$(CONFIG_MLX5_VDPA) += mlx5/
|
|
obj-$(CONFIG_VP_VDPA) += virtio_pci/
|