mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-29 22:14:41 +08:00
crypto: qat - rename bufferlist functions
Rename the functions qat_alg_sgl_to_bufl() and qat_alg_free_bufl() as qat_bl_sgl_to_bufl() and qat_bl_free_bufl() after their relocation into the qat_bl module. This commit does not implement any functional change. Signed-off-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
e9612987e4
commit
b0cd997f35
@ -673,7 +673,7 @@ static void qat_aead_alg_callback(struct icp_qat_fw_la_resp *qat_resp,
|
||||
u8 stat_filed = qat_resp->comn_resp.comn_status;
|
||||
int res = 0, qat_res = ICP_QAT_FW_COMN_RESP_CRYPTO_STAT_GET(stat_filed);
|
||||
|
||||
qat_alg_free_bufl(inst, qat_req);
|
||||
qat_bl_free_bufl(inst, qat_req);
|
||||
if (unlikely(qat_res != ICP_QAT_FW_COMN_STATUS_FLAG_OK))
|
||||
res = -EBADMSG;
|
||||
areq->base.complete(&areq->base, res);
|
||||
@ -743,7 +743,7 @@ static void qat_skcipher_alg_callback(struct icp_qat_fw_la_resp *qat_resp,
|
||||
u8 stat_filed = qat_resp->comn_resp.comn_status;
|
||||
int res = 0, qat_res = ICP_QAT_FW_COMN_RESP_CRYPTO_STAT_GET(stat_filed);
|
||||
|
||||
qat_alg_free_bufl(inst, qat_req);
|
||||
qat_bl_free_bufl(inst, qat_req);
|
||||
if (unlikely(qat_res != ICP_QAT_FW_COMN_STATUS_FLAG_OK))
|
||||
res = -EINVAL;
|
||||
|
||||
@ -799,7 +799,7 @@ static int qat_alg_aead_dec(struct aead_request *areq)
|
||||
if (cipher_len % AES_BLOCK_SIZE != 0)
|
||||
return -EINVAL;
|
||||
|
||||
ret = qat_alg_sgl_to_bufl(ctx->inst, areq->src, areq->dst, qat_req, f);
|
||||
ret = qat_bl_sgl_to_bufl(ctx->inst, areq->src, areq->dst, qat_req, f);
|
||||
if (unlikely(ret))
|
||||
return ret;
|
||||
|
||||
@ -821,7 +821,7 @@ static int qat_alg_aead_dec(struct aead_request *areq)
|
||||
|
||||
ret = qat_alg_send_sym_message(qat_req, ctx->inst, &areq->base);
|
||||
if (ret == -ENOSPC)
|
||||
qat_alg_free_bufl(ctx->inst, qat_req);
|
||||
qat_bl_free_bufl(ctx->inst, qat_req);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -842,7 +842,7 @@ static int qat_alg_aead_enc(struct aead_request *areq)
|
||||
if (areq->cryptlen % AES_BLOCK_SIZE != 0)
|
||||
return -EINVAL;
|
||||
|
||||
ret = qat_alg_sgl_to_bufl(ctx->inst, areq->src, areq->dst, qat_req, f);
|
||||
ret = qat_bl_sgl_to_bufl(ctx->inst, areq->src, areq->dst, qat_req, f);
|
||||
if (unlikely(ret))
|
||||
return ret;
|
||||
|
||||
@ -866,7 +866,7 @@ static int qat_alg_aead_enc(struct aead_request *areq)
|
||||
|
||||
ret = qat_alg_send_sym_message(qat_req, ctx->inst, &areq->base);
|
||||
if (ret == -ENOSPC)
|
||||
qat_alg_free_bufl(ctx->inst, qat_req);
|
||||
qat_bl_free_bufl(ctx->inst, qat_req);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -1027,7 +1027,7 @@ static int qat_alg_skcipher_encrypt(struct skcipher_request *req)
|
||||
if (req->cryptlen == 0)
|
||||
return 0;
|
||||
|
||||
ret = qat_alg_sgl_to_bufl(ctx->inst, req->src, req->dst, qat_req, f);
|
||||
ret = qat_bl_sgl_to_bufl(ctx->inst, req->src, req->dst, qat_req, f);
|
||||
if (unlikely(ret))
|
||||
return ret;
|
||||
|
||||
@ -1048,7 +1048,7 @@ static int qat_alg_skcipher_encrypt(struct skcipher_request *req)
|
||||
|
||||
ret = qat_alg_send_sym_message(qat_req, ctx->inst, &req->base);
|
||||
if (ret == -ENOSPC)
|
||||
qat_alg_free_bufl(ctx->inst, qat_req);
|
||||
qat_bl_free_bufl(ctx->inst, qat_req);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -1093,7 +1093,7 @@ static int qat_alg_skcipher_decrypt(struct skcipher_request *req)
|
||||
if (req->cryptlen == 0)
|
||||
return 0;
|
||||
|
||||
ret = qat_alg_sgl_to_bufl(ctx->inst, req->src, req->dst, qat_req, f);
|
||||
ret = qat_bl_sgl_to_bufl(ctx->inst, req->src, req->dst, qat_req, f);
|
||||
if (unlikely(ret))
|
||||
return ret;
|
||||
|
||||
@ -1115,7 +1115,7 @@ static int qat_alg_skcipher_decrypt(struct skcipher_request *req)
|
||||
|
||||
ret = qat_alg_send_sym_message(qat_req, ctx->inst, &req->base);
|
||||
if (ret == -ENOSPC)
|
||||
qat_alg_free_bufl(ctx->inst, qat_req);
|
||||
qat_bl_free_bufl(ctx->inst, qat_req);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@ -10,8 +10,8 @@
|
||||
#include "qat_bl.h"
|
||||
#include "qat_crypto.h"
|
||||
|
||||
void qat_alg_free_bufl(struct qat_crypto_instance *inst,
|
||||
struct qat_crypto_request *qat_req)
|
||||
void qat_bl_free_bufl(struct qat_crypto_instance *inst,
|
||||
struct qat_crypto_request *qat_req)
|
||||
{
|
||||
struct device *dev = &GET_DEV(inst->accel_dev);
|
||||
struct qat_alg_buf_list *bl = qat_req->buf.bl;
|
||||
@ -50,11 +50,11 @@ void qat_alg_free_bufl(struct qat_crypto_instance *inst,
|
||||
}
|
||||
}
|
||||
|
||||
int qat_alg_sgl_to_bufl(struct qat_crypto_instance *inst,
|
||||
struct scatterlist *sgl,
|
||||
struct scatterlist *sglout,
|
||||
struct qat_crypto_request *qat_req,
|
||||
gfp_t flags)
|
||||
int qat_bl_sgl_to_bufl(struct qat_crypto_instance *inst,
|
||||
struct scatterlist *sgl,
|
||||
struct scatterlist *sglout,
|
||||
struct qat_crypto_request *qat_req,
|
||||
gfp_t flags)
|
||||
{
|
||||
struct device *dev = &GET_DEV(inst->accel_dev);
|
||||
int i, sg_nctr = 0;
|
||||
|
@ -6,12 +6,12 @@
|
||||
#include <linux/types.h>
|
||||
#include "qat_crypto.h"
|
||||
|
||||
void qat_alg_free_bufl(struct qat_crypto_instance *inst,
|
||||
struct qat_crypto_request *qat_req);
|
||||
int qat_alg_sgl_to_bufl(struct qat_crypto_instance *inst,
|
||||
struct scatterlist *sgl,
|
||||
struct scatterlist *sglout,
|
||||
struct qat_crypto_request *qat_req,
|
||||
gfp_t flags);
|
||||
void qat_bl_free_bufl(struct qat_crypto_instance *inst,
|
||||
struct qat_crypto_request *qat_req);
|
||||
int qat_bl_sgl_to_bufl(struct qat_crypto_instance *inst,
|
||||
struct scatterlist *sgl,
|
||||
struct scatterlist *sglout,
|
||||
struct qat_crypto_request *qat_req,
|
||||
gfp_t flags);
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user