Home
last modified time | relevance | path

Searched refs:device_features (Results 1 – 9 of 9) sorted by relevance

/linux-6.6.21/drivers/vdpa/virtio_pci/
Dvp_vdpa.c39 u64 device_features; member
73 return vp_vdpa->device_features; in vp_vdpa_get_device_features()
480 u64 device_features; in vp_vdpa_dev_add() local
497 device_features = vp_modern_get_features(mdev); in vp_vdpa_dev_add()
499 if (add_config->device_features & ~device_features) { in vp_vdpa_dev_add()
504 device_features, add_config->device_features); in vp_vdpa_dev_add()
507 device_features = add_config->device_features; in vp_vdpa_dev_add()
509 vp_vdpa->device_features = device_features; in vp_vdpa_dev_add()
/linux-6.6.21/drivers/virtio/
Dvirtio.c242 u64 device_features; in virtio_dev_probe() local
250 device_features = dev->config->get_features(dev); in virtio_dev_probe()
272 if (device_features & (1ULL << VIRTIO_F_VERSION_1)) in virtio_dev_probe()
273 dev->features = driver_features & device_features; in virtio_dev_probe()
275 dev->features = driver_features_legacy & device_features; in virtio_dev_probe()
279 if (device_features & (1ULL << i)) in virtio_dev_probe()
/linux-6.6.21/drivers/vdpa/ifcvf/
Difcvf_main.c686 u64 device_features; in ifcvf_vdpa_dev_add() local
706 device_features = vf->hw_features; in ifcvf_vdpa_dev_add()
708 if (config->device_features & ~device_features) { in ifcvf_vdpa_dev_add()
710 config->device_features, device_features); in ifcvf_vdpa_dev_add()
713 device_features &= config->device_features; in ifcvf_vdpa_dev_add()
715 vf->dev_features = device_features; in ifcvf_vdpa_dev_add()
/linux-6.6.21/drivers/vdpa/mlx5/net/
Dmlx5_vnet.c3358 u64 device_features; in mlx5_vdpa_dev_add() local
3367 device_features = mgtdev->mgtdev.supported_features; in mlx5_vdpa_dev_add()
3369 if (add_config->device_features & ~device_features) { in mlx5_vdpa_dev_add()
3372 add_config->device_features, device_features); in mlx5_vdpa_dev_add()
3375 device_features &= add_config->device_features; in mlx5_vdpa_dev_add()
3377 device_features &= ~BIT_ULL(VIRTIO_NET_F_MRG_RXBUF); in mlx5_vdpa_dev_add()
3379 if (!(device_features & BIT_ULL(VIRTIO_F_VERSION_1) && in mlx5_vdpa_dev_add()
3380 device_features & BIT_ULL(VIRTIO_F_ACCESS_PLATFORM))) { in mlx5_vdpa_dev_add()
3437 if (device_features & BIT_ULL(VIRTIO_NET_F_MTU)) { in mlx5_vdpa_dev_add()
3445 if (device_features & BIT_ULL(VIRTIO_NET_F_STATUS)) { in mlx5_vdpa_dev_add()
[all …]
/linux-6.6.21/drivers/vdpa/
Dvdpa.c634 config.device_features = in vdpa_nl_cmd_dev_add_set_doit()
637 !(config.device_features & BIT_ULL(VIRTIO_NET_F_MAC))) in vdpa_nl_cmd_dev_add_set_doit()
640 !(config.device_features & BIT_ULL(VIRTIO_NET_F_MTU))) in vdpa_nl_cmd_dev_add_set_doit()
644 !(config.device_features & BIT_ULL(VIRTIO_NET_F_MQ))) in vdpa_nl_cmd_dev_add_set_doit()
691 config.device_features & VIRTIO_DEVICE_F_MASK) { in vdpa_nl_cmd_dev_add_set_doit()
/linux-6.6.21/include/linux/
Dvdpa.h113 u64 device_features; member
/linux-6.6.21/drivers/vdpa/pds/
Dvdpa_dev.c645 add_config->device_features & ~pdsv->supported_features; in pds_vdpa_dev_add()
653 pdsv->supported_features = add_config->device_features; in pds_vdpa_dev_add()
/linux-6.6.21/drivers/vdpa/vdpa_sim/
Dvdpa_sim.c204 if (config->device_features & in vdpasim_create()
208 config->device_features; in vdpasim_create()
/linux-6.6.21/drivers/vdpa/vdpa_user/
Dvduse_dev.c105 u64 device_features; member
604 return dev->device_features; in vduse_vdpa_get_device_features()
1791 dev->device_features = config->features; in vduse_create_dev()