Displaying 1 result from an estimated 1 matches for "97d5725".
Did you mean:
975725
2020 Apr 30
0
[RFC/PATCH 1/1] virtio: Introduce MMIO ops
...rg>
> ---
> drivers/virtio/virtio_mmio.c | 131 ++++++++++++++++++++++++++-----------------
> include/linux/virtio.h | 14 +++++
> 2 files changed, 94 insertions(+), 51 deletions(-)
>
> diff --git a/drivers/virtio/virtio_mmio.c b/drivers/virtio/virtio_mmio.c
> index 97d5725..69bfa35 100644
> --- a/drivers/virtio/virtio_mmio.c
> +++ b/drivers/virtio/virtio_mmio.c
> @@ -100,7 +100,35 @@ struct virtio_mmio_vq_info {
> struct list_head node;
> };
>
> +#ifdef CONFIG_VIRTIO_MMIO_OPS
>
> +static struct virtio_mmio_ops *mmio_ops;
> +
>...