Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1558159 > unrolled thread
| Started by | Gonglei <arei.gonglei@huawei.com> |
|---|---|
| First post | 2017-01-13 10:40 +0100 |
| Last post | 2017-01-13 15:40 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH v2] virtio-crypto: adjust priority of algorithm Gonglei <arei.gonglei@huawei.com> - 2017-01-13 10:40 +0100
Re: [PATCH v2] virtio-crypto: adjust priority of algorithm Herbert Xu <herbert@gondor.apana.org.au> - 2017-01-13 15:40 +0100
| From | Gonglei <arei.gonglei@huawei.com> |
|---|---|
| Date | 2017-01-13 10:40 +0100 |
| Subject | [PATCH v2] virtio-crypto: adjust priority of algorithm |
| Message-ID | <sZ6v0-7Bl-21@gated-at.bofh.it> |
Some hardware accelerators (like intel aesni or the s390
cpacf functions) have lower priorities than virtio
crypto, and those drivers are faster than the same in
the host via virtio. So let's lower the priority of
virtio-crypto's algorithm, make it's higher than software
implementations but lower than the hardware ones.
Suggested-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
---
v2:
fix three typos. [Christian]
---
drivers/crypto/virtio/virtio_crypto_algs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/crypto/virtio/virtio_crypto_algs.c b/drivers/crypto/virtio/virtio_crypto_algs.c
index 6f40a42..4de4740 100644
--- a/drivers/crypto/virtio/virtio_crypto_algs.c
+++ b/drivers/crypto/virtio/virtio_crypto_algs.c
@@ -498,7 +498,7 @@ void virtio_crypto_ablkcipher_finalize_req(
static struct crypto_alg virtio_crypto_algs[] = { {
.cra_name = "cbc(aes)",
.cra_driver_name = "virtio_crypto_aes_cbc",
- .cra_priority = 501,
+ .cra_priority = 150,
.cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER | CRYPTO_ALG_ASYNC,
.cra_blocksize = AES_BLOCK_SIZE,
.cra_ctxsize = sizeof(struct virtio_crypto_ablkcipher_ctx),
--
1.8.3.1
[toc] | [next] | [standalone]
| From | Herbert Xu <herbert@gondor.apana.org.au> |
|---|---|
| Date | 2017-01-13 15:40 +0100 |
| Message-ID | <sZbbk-20a-11@gated-at.bofh.it> |
| In reply to | #1558159 |
On Fri, Jan 13, 2017 at 05:34:16PM +0800, Gonglei wrote: > Some hardware accelerators (like intel aesni or the s390 > cpacf functions) have lower priorities than virtio > crypto, and those drivers are faster than the same in > the host via virtio. So let's lower the priority of > virtio-crypto's algorithm, make it's higher than software > implementations but lower than the hardware ones. > > Suggested-by: Christian Borntraeger <borntraeger@de.ibm.com> > Signed-off-by: Gonglei <arei.gonglei@huawei.com> > Acked-by: Christian Borntraeger <borntraeger@de.ibm.com> Patch applied. Thanks. -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web