lkml.org 
[lkml]   [2017]   [Jul]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v3 07/28] crypto: qce: use -EIOCBQUEUED for backlog indication
    Date
    Replace -EBUSY with -EIOCBQUEUED for backlog queueing indication
    as part of new API.

    Signed-off-by: Gilad Ben-Yossef <gilad@benyossef.com>
    ---

    This patch should be squashed with the first patch in the series
    when applied.

    drivers/crypto/qce/sha.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/crypto/qce/sha.c b/drivers/crypto/qce/sha.c
    index 47e114a..a21d2a1c 100644
    --- a/drivers/crypto/qce/sha.c
    +++ b/drivers/crypto/qce/sha.c
    @@ -421,7 +421,7 @@ static int qce_ahash_hmac_setkey(struct crypto_ahash *tfm, const u8 *key,
    ahash_request_set_crypt(req, &sg, ctx->authkey, keylen);

    ret = crypto_ahash_digest(req);
    - if (ret == -EINPROGRESS || ret == -EBUSY) {
    + if (ret == -EINPROGRESS || ret == -EIOCBQUEUED) {
    ret = wait_for_completion_interruptible(&result.completion);
    if (!ret)
    ret = result.error;
    --
    2.1.4
    \
     
     \ /
      Last update: 2017-07-02 19:27    [W:2.241 / U:1.232 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site