Displaying 1 result from an estimated 1 matches for "vdpasim_get_device_features".
2023 Jan 29
1
[PATCH v3 2/2] vdpasim: support doorbell mapping
....get_vq_notification    = vdpasim_get_vq_notification,
> +       .get_vq_notification_pgprot = vdpasim_get_vq_notification_pgprot,
>         .get_vq_align           = vdpasim_get_vq_align,
>         .get_vq_group           = vdpasim_get_vq_group,
>         .get_device_features    = vdpasim_get_device_features,
> @@ -737,6 +800,8 @@ static const struct vdpa_config_ops vdpasim_batch_config_ops = {
>         .get_vq_ready           = vdpasim_get_vq_ready,
>         .set_vq_state           = vdpasim_set_vq_state,
>         .get_vq_state           = vdpasim_get_vq_state,
> +       .get_vq_noti...