search for: virtio_cread32_l

Displaying 13 results from an estimated 13 matches for "virtio_cread32_l".

Did you mean: virtio_cread32_le
2016 Nov 27
2
[PATCH v2 1/2] virtio: introduce little edian functions for virtio_cread/write# family
...set, &ret, sizeof(ret)); > + return ret; > +} > + > +static inline void virtio_cwrite16_le(struct virtio_device *vdev, > + unsigned int offset, __le16 val) > +{ > + vdev->config->set(vdev, offset, &val, sizeof(val)); > +} > + > +static inline __le32 virtio_cread32_le(struct virtio_device *vdev, > + unsigned int offset) > +{ > + __le32 ret; > + > + vdev->config->get(vdev, offset, &ret, sizeof(ret)); > + return ret; > +} > + > +static inline void virtio_cwrite32_le(struct virtio_device *vdev, > + unsigned int off...
2016 Nov 27
2
[PATCH v2 1/2] virtio: introduce little edian functions for virtio_cread/write# family
...set, &ret, sizeof(ret)); > + return ret; > +} > + > +static inline void virtio_cwrite16_le(struct virtio_device *vdev, > + unsigned int offset, __le16 val) > +{ > + vdev->config->set(vdev, offset, &val, sizeof(val)); > +} > + > +static inline __le32 virtio_cread32_le(struct virtio_device *vdev, > + unsigned int offset) > +{ > + __le32 ret; > + > + vdev->config->get(vdev, offset, &ret, sizeof(ret)); > + return ret; > +} > + > +static inline void virtio_cwrite32_le(struct virtio_device *vdev, > + unsigned int off...
2016 Nov 28
3
[virtio-dev] Re: [PATCH v2 1/2] virtio: introduce little edian functions for virtio_cread/write# family
...t; > +static inline void virtio_cwrite16_le(struct virtio_device *vdev, > > > + unsigned int offset, __le16 val) > > > +{ > > > + vdev->config->set(vdev, offset, &val, sizeof(val)); > > > +} > > > + > > > +static inline __le32 virtio_cread32_le(struct virtio_device *vdev, > > > + unsigned int offset) > > > +{ > > > + __le32 ret; > > > + > > > + vdev->config->get(vdev, offset, &ret, sizeof(ret)); > > > + return ret; > > > +} > > > + > > > +stati...
2016 Nov 28
3
[virtio-dev] Re: [PATCH v2 1/2] virtio: introduce little edian functions for virtio_cread/write# family
...t; > +static inline void virtio_cwrite16_le(struct virtio_device *vdev, > > > + unsigned int offset, __le16 val) > > > +{ > > > + vdev->config->set(vdev, offset, &val, sizeof(val)); > > > +} > > > + > > > +static inline __le32 virtio_cread32_le(struct virtio_device *vdev, > > > + unsigned int offset) > > > +{ > > > + __le32 ret; > > > + > > > + vdev->config->get(vdev, offset, &ret, sizeof(ret)); > > > + return ret; > > > +} > > > + > > > +stati...
2016 Nov 22
0
[PATCH v2 1/2] virtio: introduce little edian functions for virtio_cread/write# family
...__le16 ret; + + vdev->config->get(vdev, offset, &ret, sizeof(ret)); + return ret; +} + +static inline void virtio_cwrite16_le(struct virtio_device *vdev, + unsigned int offset, __le16 val) +{ + vdev->config->set(vdev, offset, &val, sizeof(val)); +} + +static inline __le32 virtio_cread32_le(struct virtio_device *vdev, + unsigned int offset) +{ + __le32 ret; + + vdev->config->get(vdev, offset, &ret, sizeof(ret)); + return ret; +} + +static inline void virtio_cwrite32_le(struct virtio_device *vdev, + unsigned int offset, __le32 val) +{ + vdev->config->set(vdev...
2016 Nov 28
0
[virtio-dev] Re: [PATCH v2 1/2] virtio: introduce little edian functions for virtio_cread/write# family
...t; > > +} > > + > > +static inline void virtio_cwrite16_le(struct virtio_device *vdev, > > + unsigned int offset, __le16 val) > > +{ > > + vdev->config->set(vdev, offset, &val, sizeof(val)); > > +} > > + > > +static inline __le32 virtio_cread32_le(struct virtio_device *vdev, > > + unsigned int offset) > > +{ > > + __le32 ret; > > + > > + vdev->config->get(vdev, offset, &ret, sizeof(ret)); > > + return ret; > > +} > > + > > +static inline void virtio_cwrite32_le(struct virti...
2016 Nov 22
5
[PATCH v2 0/2] virtio-crypto: add Linux driver
The virtio crypto device is a virtual cryptography device as well as a kind of virtual hardware accelerator for virtual machines. The encryption anddecryption requests are placed in the data queue and are ultimately handled by thebackend crypto accelerators. The second queue is the control queue used to create or destroy sessions for symmetric algorithms and will control some advanced features in
2016 Nov 22
5
[PATCH v2 0/2] virtio-crypto: add Linux driver
The virtio crypto device is a virtual cryptography device as well as a kind of virtual hardware accelerator for virtual machines. The encryption anddecryption requests are placed in the data queue and are ultimately handled by thebackend crypto accelerators. The second queue is the control queue used to create or destroy sessions for symmetric algorithms and will control some advanced features in
2016 Nov 28
0
[virtio-dev] Re: [PATCH v2 1/2] virtio: introduce little edian functions for virtio_cread/write# family
...rtio_cwrite16_le(struct virtio_device *vdev, > > > > + unsigned int offset, __le16 val) > > > > +{ > > > > + vdev->config->set(vdev, offset, &val, sizeof(val)); > > > > +} > > > > + > > > > +static inline __le32 virtio_cread32_le(struct virtio_device *vdev, > > > > + unsigned int offset) > > > > +{ > > > > + __le32 ret; > > > > + > > > > + vdev->config->get(vdev, offset, &ret, sizeof(ret)); > > > > + return ret; > > > > +} &gt...
2016 Nov 27
2
[PATCH v2 2/2] crypto: add virtio-crypto driver
...us(); > + > + return 0; > + > +err_free: > + virtcrypto_free_queues(vi); > +err: > + return ret; > +} > + > +static int virtcrypto_update_status(struct virtio_crypto *vcrypto) > +{ > + __le32 status_le; > + u32 status; > + int err; > + > + status_le = virtio_cread32_le(vcrypto->vdev, > + offsetof(struct virtio_crypto_config, status)); > + status = le32_to_cpu(status_le); > + > + /* Ignore unknown (future) status bits */ > + status &= VIRTIO_CRYPTO_S_HW_READY; > + > + if (vcrypto->status == status) > + return 0; > + > +...
2016 Nov 27
2
[PATCH v2 2/2] crypto: add virtio-crypto driver
...us(); > + > + return 0; > + > +err_free: > + virtcrypto_free_queues(vi); > +err: > + return ret; > +} > + > +static int virtcrypto_update_status(struct virtio_crypto *vcrypto) > +{ > + __le32 status_le; > + u32 status; > + int err; > + > + status_le = virtio_cread32_le(vcrypto->vdev, > + offsetof(struct virtio_crypto_config, status)); > + status = le32_to_cpu(status_le); > + > + /* Ignore unknown (future) status bits */ > + status &= VIRTIO_CRYPTO_S_HW_READY; > + > + if (vcrypto->status == status) > + return 0; > + > +...
2016 Nov 28
0
[virtio-dev] Re: [PATCH v2 2/2] crypto: add virtio-crypto driver
...t; + virtcrypto_free_queues(vi); > > +err: > > + return ret; > > +} > > + > > +static int virtcrypto_update_status(struct virtio_crypto *vcrypto) > > +{ > > + __le32 status_le; > > + u32 status; > > + int err; > > + > > + status_le = virtio_cread32_le(vcrypto->vdev, > > + offsetof(struct virtio_crypto_config, status)); > > + status = le32_to_cpu(status_le); > > + > > + /* Ignore unknown (future) status bits */ > > + status &= VIRTIO_CRYPTO_S_HW_READY; > > + > > + if (vcrypto->status == statu...
2016 Nov 22
0
[PATCH v2 2/2] crypto: add virtio-crypto driver
...err_free; + + get_online_cpus(); + virtcrypto_set_affinity(vi); + put_online_cpus(); + + return 0; + +err_free: + virtcrypto_free_queues(vi); +err: + return ret; +} + +static int virtcrypto_update_status(struct virtio_crypto *vcrypto) +{ + __le32 status_le; + u32 status; + int err; + + status_le = virtio_cread32_le(vcrypto->vdev, + offsetof(struct virtio_crypto_config, status)); + status = le32_to_cpu(status_le); + + /* Ignore unknown (future) status bits */ + status &= VIRTIO_CRYPTO_S_HW_READY; + + if (vcrypto->status == status) + return 0; + + vcrypto->status = status; + + if (vcrypto->s...