* [dpdk-dev] [PATCH] qat pmd:Fixing build issue on 32-bit systems
@ 2016-02-16 9:44 John Griffin
2016-02-16 15:52 ` De Lara Guarch, Pablo
2016-02-18 10:57 ` [dpdk-dev] [PATCH v2] qat:fix build " John Griffin
0 siblings, 2 replies; 5+ messages in thread
From: John Griffin @ 2016-02-16 9:44 UTC (permalink / raw)
To: dev
Fixing build issue on 32-bit systems.
Fixes: 1703e94ac5ce ("qat: add driver for QuickAssist devices")
Signed-off-by: John Griffin <john.griffin@intel.com>
---
drivers/crypto/qat/qat_crypto.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/crypto/qat/qat_crypto.c b/drivers/crypto/qat/qat_crypto.c
index 129e96d..828756b 100644
--- a/drivers/crypto/qat/qat_crypto.c
+++ b/drivers/crypto/qat/qat_crypto.c
@@ -342,7 +342,7 @@ qat_crypto_pkt_rx_burst(void *qp, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
while (*(uint32_t *)resp_msg != ADF_RING_EMPTY_SIG &&
msg_counter != nb_pkts) {
- rx_mbuf = (struct rte_mbuf *)(resp_msg->opaque_data);
+ rx_mbuf = (struct rte_mbuf *)(uintptr_t)(resp_msg->opaque_data);
ol = rte_pktmbuf_offload_get(rx_mbuf, RTE_PKTMBUF_OL_CRYPTO);
if (ICP_QAT_FW_COMN_STATUS_FLAG_OK !=
@@ -405,7 +405,7 @@ qat_alg_write_mbuf_entry(struct rte_mbuf *mbuf, uint8_t *out_msg)
ctx = (struct qat_session *)ol->op.crypto.session->_private;
qat_req = (struct icp_qat_fw_la_bulk_req *)out_msg;
*qat_req = ctx->fw_req;
- qat_req->comn_mid.opaque_data = (uint64_t)mbuf;
+ qat_req->comn_mid.opaque_data = (uint64_t)(uintptr_t)mbuf;
/*
* The following code assumes:
--
2.1.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] qat pmd:Fixing build issue on 32-bit systems
2016-02-16 9:44 [dpdk-dev] [PATCH] qat pmd:Fixing build issue on 32-bit systems John Griffin
@ 2016-02-16 15:52 ` De Lara Guarch, Pablo
2016-02-17 13:29 ` John Griffin
2016-02-18 10:57 ` [dpdk-dev] [PATCH v2] qat:fix build " John Griffin
1 sibling, 1 reply; 5+ messages in thread
From: De Lara Guarch, Pablo @ 2016-02-16 15:52 UTC (permalink / raw)
To: Griffin, John, dev
Hi John,
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of John Griffin
> Sent: Tuesday, February 16, 2016 9:45 AM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH] qat pmd:Fixing build issue on 32-bit systems
>
> Fixing build issue on 32-bit systems.
> Fixes: 1703e94ac5ce ("qat: add driver for QuickAssist devices")
>
> Signed-off-by: John Griffin <john.griffin@intel.com>
Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
Could you include the error that you are fixing on this patch?
For example:
drivers/crypto/qat/qat_crypto.c:345:13:
error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast]
Also, as a general rule, patch titles start with lowercase and do not include the name "issue" if we use "fix".
e.g. (qat: fix build on 32-bit systems).
Apart from this, patch looks OK to me, so you can leave the acknowledgment in the v2.
Thanks!
Pablo
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] qat pmd:Fixing build issue on 32-bit systems
2016-02-16 15:52 ` De Lara Guarch, Pablo
@ 2016-02-17 13:29 ` John Griffin
0 siblings, 0 replies; 5+ messages in thread
From: John Griffin @ 2016-02-17 13:29 UTC (permalink / raw)
To: De Lara Guarch, Pablo, dev
Hi Pablo,
Sure - will resubmit a v2 with those modifications.
Thanks,
John.
On 16/02/16 15:52, De Lara Guarch, Pablo wrote:
> Hi John,
>
>> -----Original Message-----
>> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of John Griffin
>> Sent: Tuesday, February 16, 2016 9:45 AM
>> To: dev@dpdk.org
>> Subject: [dpdk-dev] [PATCH] qat pmd:Fixing build issue on 32-bit systems
>>
>> Fixing build issue on 32-bit systems.
>> Fixes: 1703e94ac5ce ("qat: add driver for QuickAssist devices")
>>
>> Signed-off-by: John Griffin <john.griffin@intel.com>
> Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
>
> Could you include the error that you are fixing on this patch?
>
> For example:
>
> drivers/crypto/qat/qat_crypto.c:345:13:
> error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast]
>
> Also, as a general rule, patch titles start with lowercase and do not include the name "issue" if we use "fix".
> e.g. (qat: fix build on 32-bit systems).
>
> Apart from this, patch looks OK to me, so you can leave the acknowledgment in the v2.
>
> Thanks!
> Pablo
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [dpdk-dev] [PATCH v2] qat:fix build on 32-bit systems
2016-02-16 9:44 [dpdk-dev] [PATCH] qat pmd:Fixing build issue on 32-bit systems John Griffin
2016-02-16 15:52 ` De Lara Guarch, Pablo
@ 2016-02-18 10:57 ` John Griffin
2016-02-24 14:12 ` Thomas Monjalon
1 sibling, 1 reply; 5+ messages in thread
From: John Griffin @ 2016-02-18 10:57 UTC (permalink / raw)
To: dev
Fixing build on 32-bit systems on quick assist driver - for example:
drivers/crypto/qat/qat_crypto.c: In function ‘qat_alg_write_mbuf_entry’:
drivers/crypto/qat/qat_crypto.c:408:34: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
Fixes: 1703e94ac5ce ("qat: add driver for QuickAssist devices")
Signed-off-by: John Griffin <john.griffin@intel.com>
Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
---
v1->v2:
- Corrected subject text and included build failure.
drivers/crypto/qat/qat_crypto.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/crypto/qat/qat_crypto.c b/drivers/crypto/qat/qat_crypto.c
index 129e96d..828756b 100644
--- a/drivers/crypto/qat/qat_crypto.c
+++ b/drivers/crypto/qat/qat_crypto.c
@@ -342,7 +342,7 @@ qat_crypto_pkt_rx_burst(void *qp, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
while (*(uint32_t *)resp_msg != ADF_RING_EMPTY_SIG &&
msg_counter != nb_pkts) {
- rx_mbuf = (struct rte_mbuf *)(resp_msg->opaque_data);
+ rx_mbuf = (struct rte_mbuf *)(uintptr_t)(resp_msg->opaque_data);
ol = rte_pktmbuf_offload_get(rx_mbuf, RTE_PKTMBUF_OL_CRYPTO);
if (ICP_QAT_FW_COMN_STATUS_FLAG_OK !=
@@ -405,7 +405,7 @@ qat_alg_write_mbuf_entry(struct rte_mbuf *mbuf, uint8_t *out_msg)
ctx = (struct qat_session *)ol->op.crypto.session->_private;
qat_req = (struct icp_qat_fw_la_bulk_req *)out_msg;
*qat_req = ctx->fw_req;
- qat_req->comn_mid.opaque_data = (uint64_t)mbuf;
+ qat_req->comn_mid.opaque_data = (uint64_t)(uintptr_t)mbuf;
/*
* The following code assumes:
--
2.1.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH v2] qat:fix build on 32-bit systems
2016-02-18 10:57 ` [dpdk-dev] [PATCH v2] qat:fix build " John Griffin
@ 2016-02-24 14:12 ` Thomas Monjalon
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2016-02-24 14:12 UTC (permalink / raw)
To: John Griffin; +Cc: dev
2016-02-18 10:57, John Griffin:
> Fixing build on 32-bit systems on quick assist driver - for example:
> drivers/crypto/qat/qat_crypto.c: In function ‘qat_alg_write_mbuf_entry’:
> drivers/crypto/qat/qat_crypto.c:408:34: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
>
> Fixes: 1703e94ac5ce ("qat: add driver for QuickAssist devices")
>
> Signed-off-by: John Griffin <john.griffin@intel.com>
> Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
Applied, thanks
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-02-24 14:13 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-16 9:44 [dpdk-dev] [PATCH] qat pmd:Fixing build issue on 32-bit systems John Griffin
2016-02-16 15:52 ` De Lara Guarch, Pablo
2016-02-17 13:29 ` John Griffin
2016-02-18 10:57 ` [dpdk-dev] [PATCH v2] qat:fix build " John Griffin
2016-02-24 14:12 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).