git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
12e9e70
)
vhost/crypto: fix parens
author
Fan Zhang
<roy.fan.zhang@intel.com>
Mon, 25 Mar 2019 14:37:31 +0000
(14:37 +0000)
committer
Ferruh Yigit
<ferruh.yigit@intel.com>
Fri, 29 Mar 2019 16:25:32 +0000
(17:25 +0100)
Coverity issue: 277214, 277220, 277233, 277236
Fixes:
cd1e8f03abf0
("vhost/crypto: fix packet copy in chaining mode")
Cc: stable@dpdk.org
Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
lib/librte_vhost/vhost_crypto.c
patch
|
blob
|
history
diff --git
a/lib/librte_vhost/vhost_crypto.c
b/lib/librte_vhost/vhost_crypto.c
index
9b4b850
..
0edf12d
100644
(file)
--- a/
lib/librte_vhost/vhost_crypto.c
+++ b/
lib/librte_vhost/vhost_crypto.c
@@
-1109,7
+1109,7
@@
prepare_sym_chain_op(struct vhost_crypto *vcrypto, struct rte_crypto_op *op,
if (unlikely(copy_data(digest_addr, vc_req, &digest_desc,
chain->para.hash_result_len,
- nb_descs, vq_size)
) < 0
) {
+ nb_descs, vq_size)
< 0)
) {
ret = VIRTIO_CRYPTO_BADMSG;
goto error_exit;
}
@@
-1627,7
+1627,7
@@
rte_vhost_crypto_fetch_requests(int vid, uint32_t qid,
op->sym->m_src->data_off = 0;
if (unlikely(vhost_crypto_process_one_req(vcrypto, vq,
- op, head, desc_idx)
) < 0
)
+ op, head, desc_idx)
< 0)
)
break;
}