Displaying 7 results from an estimated 7 matches for "exp_name".
Did you mean:
exn_name
2020 Jun 04
2
[PATCH v4 1/3] virtio: add dma-buf support for exported objects
...p_info)
> +{
> + struct dma_buf_export_info exp_info;
> +
> + if (!virtio_exp_info->ops
> + || virtio_exp_info->ops->ops.attach != &virtio_dma_buf_attach
> + || !virtio_exp_info->ops->get_uuid) {
> + return ERR_PTR(-EINVAL);
> + }
> +
> + exp_info.exp_name = virtio_exp_info->exp_name;
> + exp_info.owner = virtio_exp_info->owner;
> + exp_info.ops = &virtio_exp_info->ops->ops;
> + exp_info.size = virtio_exp_info->size;
> + exp_info.flags = virtio_exp_info->flags;
> + exp_info.resv = virtio_exp_info->resv;
> +...
2020 Jun 04
2
[PATCH v4 1/3] virtio: add dma-buf support for exported objects
...p_info)
> +{
> + struct dma_buf_export_info exp_info;
> +
> + if (!virtio_exp_info->ops
> + || virtio_exp_info->ops->ops.attach != &virtio_dma_buf_attach
> + || !virtio_exp_info->ops->get_uuid) {
> + return ERR_PTR(-EINVAL);
> + }
> +
> + exp_info.exp_name = virtio_exp_info->exp_name;
> + exp_info.owner = virtio_exp_info->owner;
> + exp_info.ops = &virtio_exp_info->ops->ops;
> + exp_info.size = virtio_exp_info->size;
> + exp_info.flags = virtio_exp_info->flags;
> + exp_info.resv = virtio_exp_info->resv;
> +...
2020 Jun 19
0
[PATCH v4 1/3] virtio: add dma-buf support for exported objects
...; + || virtio_exp_info->ops->ops.attach != &virtio_dma_buf_attach
> > > > + || !virtio_exp_info->ops->get_uuid) {
> > > > + return ERR_PTR(-EINVAL);
> > > > + }
> > > > +
> > > > + exp_info.exp_name = virtio_exp_info->exp_name;
> > > > + exp_info.owner = virtio_exp_info->owner;
> > > > + exp_info.ops = &virtio_exp_info->ops->ops;
> > > > + exp_info.size = virtio_exp_info->size;
> > > > + exp_info.flags = virtio_exp_info...
2020 Jun 06
0
[PATCH v4 1/3] virtio: add dma-buf support for exported objects
...s
> > > + || virtio_exp_info->ops->ops.attach != &virtio_dma_buf_attach
> > > + || !virtio_exp_info->ops->get_uuid) {
> > > + return ERR_PTR(-EINVAL);
> > > + }
> > > +
> > > + exp_info.exp_name = virtio_exp_info->exp_name;
> > > + exp_info.owner = virtio_exp_info->owner;
> > > + exp_info.ops = &virtio_exp_info->ops->ops;
> > > + exp_info.size = virtio_exp_info->size;
> > > + exp_info.flags = virtio_exp_info->flags;...
2020 Jun 08
0
[PATCH v4 1/3] virtio: add dma-buf support for exported objects
...>ops->ops.attach != &virtio_dma_buf_attach
> > > > > + || !virtio_exp_info->ops->get_uuid) {
> > > > > + return ERR_PTR(-EINVAL);
> > > > > + }
> > > > > +
> > > > > + exp_info.exp_name = virtio_exp_info->exp_name;
> > > > > + exp_info.owner = virtio_exp_info->owner;
> > > > > + exp_info.ops = &virtio_exp_info->ops->ops;
> > > > > + exp_info.size = virtio_exp_info->size;
> > > > > + exp_...
2020 Jun 08
0
[PATCH v4 1/3] virtio: add dma-buf support for exported objects
...ch
> > > > > > > + || !virtio_exp_info->ops->get_uuid) {
> > > > > > > + return ERR_PTR(-EINVAL);
> > > > > > > + }
> > > > > > > +
> > > > > > > + exp_info.exp_name = virtio_exp_info->exp_name;
> > > > > > > + exp_info.owner = virtio_exp_info->owner;
> > > > > > > + exp_info.ops = &virtio_exp_info->ops->ops;
> > > > > > > + exp_info.size = virtio_exp_info->size;
>...
2018 Jan 11
5
[PATCH 1/5] drm/prime: Remove duplicate forward declaration
From: Thierry Reding <treding at nvidia.com>
struct device is forward-declared twice. Remove the second instance.
Reviewed-by: Chris Wilson <chris at chris-wilson.co.uk>
Signed-off-by: Thierry Reding <treding at nvidia.com>
---
include/drm/drm_prime.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/include/drm/drm_prime.h b/include/drm/drm_prime.h
index