* [RFC PATCH] cryptodev: add return parameter to callback process API
@ 2022-06-24 12:11 Srujana Challa
0 siblings, 0 replies; 3+ messages in thread
From: Srujana Challa @ 2022-06-24 12:11 UTC (permalink / raw)
To: gakhil, roy.fan.zhang; +Cc: dev, jerinj, ndabilpuram, anoobj
Adds a return parameter "uint16_t qp_id" to the functions
rte_cryptodev_pmd_callback_process and rte_cryptodev_cb_fn.
The new parameter is used to return queue pair ID to
the application when it gets error interrupt, so that
application can disable and enable the queue pair, to bring
the queue back to normal state.
Signed-off-by: Srujana Challa <schalla@marvell.com>
Change-Id: I423c4fd6b8c3d910c60e3a6d4f17534756299213
---
lib/cryptodev/cryptodev_pmd.h | 3 ++-
lib/cryptodev/rte_cryptodev.c | 8 ++++----
lib/cryptodev/rte_cryptodev.h | 9 ++++++---
3 files changed, 12 insertions(+), 8 deletions(-)
diff --git a/lib/cryptodev/cryptodev_pmd.h b/lib/cryptodev/cryptodev_pmd.h
index 3dcc3cb7ed..f087b58161 100644
--- a/lib/cryptodev/cryptodev_pmd.h
+++ b/lib/cryptodev/cryptodev_pmd.h
@@ -560,6 +560,7 @@ rte_cryptodev_pmd_destroy(struct rte_cryptodev *cryptodev);
* device.
* *
* @param dev Pointer to cryptodev struct
+ * @param qp_id To pass qp_id, which got interrupt, to user application.
* @param event Crypto device interrupt event type.
*
* @return
@@ -567,7 +568,7 @@ rte_cryptodev_pmd_destroy(struct rte_cryptodev *cryptodev);
*/
__rte_internal
void rte_cryptodev_pmd_callback_process(struct rte_cryptodev *dev,
- enum rte_cryptodev_event_type event);
+ uint16_t qp_id, enum rte_cryptodev_event_type event);
/**
* @internal
diff --git a/lib/cryptodev/rte_cryptodev.c b/lib/cryptodev/rte_cryptodev.c
index 42f3221052..eee208ce2d 100644
--- a/lib/cryptodev/rte_cryptodev.c
+++ b/lib/cryptodev/rte_cryptodev.c
@@ -1689,8 +1689,8 @@ rte_cryptodev_callback_unregister(uint8_t dev_id,
}
void
-rte_cryptodev_pmd_callback_process(struct rte_cryptodev *dev,
- enum rte_cryptodev_event_type event)
+rte_cryptodev_pmd_callback_process(struct rte_cryptodev *dev, uint16_t qp_id,
+ enum rte_cryptodev_event_type event)
{
struct rte_cryptodev_callback *cb_lst;
struct rte_cryptodev_callback dev_cb;
@@ -1702,8 +1702,8 @@ rte_cryptodev_pmd_callback_process(struct rte_cryptodev *dev,
dev_cb = *cb_lst;
cb_lst->active = 1;
rte_spinlock_unlock(&rte_cryptodev_cb_lock);
- dev_cb.cb_fn(dev->data->dev_id, dev_cb.event,
- dev_cb.cb_arg);
+ dev_cb.cb_fn(dev->data->dev_id, qp_id, dev_cb.event,
+ dev_cb.cb_arg);
rte_spinlock_lock(&rte_cryptodev_cb_lock);
cb_lst->active = 0;
}
diff --git a/lib/cryptodev/rte_cryptodev.h b/lib/cryptodev/rte_cryptodev.h
index 56f459c6a0..6b41262735 100644
--- a/lib/cryptodev/rte_cryptodev.h
+++ b/lib/cryptodev/rte_cryptodev.h
@@ -577,13 +577,16 @@ typedef uint16_t (*rte_cryptodev_callback_fn)(uint16_t dev_id, uint16_t qp_id,
* software for notification of device events
*
* @param dev_id Crypto device identifier
+ * @param qp_id Return parameter from driver to the application. Driver
+ * returns queue pair ID when it gets HW error interrupt.
+ * The application can release and setup the queue
+ * again, to bring the HW queue back to normal state.
* @param event Crypto device event to register for notification of.
* @param cb_arg User specified parameter to be passed as to passed to
* users callback function.
*/
-typedef void (*rte_cryptodev_cb_fn)(uint8_t dev_id,
- enum rte_cryptodev_event_type event, void *cb_arg);
-
+typedef void (*rte_cryptodev_cb_fn)(uint8_t dev_id, uint16_t qp_id,
+ enum rte_cryptodev_event_type event, void *cb_arg);
/** Crypto Device statistics */
struct rte_cryptodev_stats {
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [RFC PATCH] cryptodev: add return parameter to callback process API
2022-06-24 12:12 Srujana Challa
@ 2022-07-17 10:46 ` Thomas Monjalon
0 siblings, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2022-07-17 10:46 UTC (permalink / raw)
To: gakhil, Srujana Challa
Cc: roy.fan.zhang, dev, jerinj, ndabilpuram, anoobj, david.marchand,
bruce.richardson, konstantin.v.ananyev, matan,
honnappa.nagarahalli
24/06/2022 14:12, Srujana Challa:
> Adds a return parameter "uint16_t qp_id" to the functions
> rte_cryptodev_pmd_callback_process and rte_cryptodev_cb_fn.
> The new parameter is used to return queue pair ID to
> the application when it gets error interrupt, so that
> application can disable and enable the queue pair, to bring
> the queue back to normal state.
What about other events?
> + * @param qp_id Return parameter from driver to the application. Driver
> + * returns queue pair ID when it gets HW error interrupt.
> + * The application can release and setup the queue
> + * again, to bring the HW queue back to normal state.
What will it mean if the event is not related to queues?
> * @param event Crypto device event to register for notification of.
> * @param cb_arg User specified parameter to be passed as to passed to
> * users callback function.
Are you going to add a new callback parameter each time
the application needs info about a new event?
In my opinion, it is a very bad idea.
As done in ethdev, you should add a query function specific to the event.
Example: https://git.dpdk.org/dpdk/commit/?id=bc70e5594838
Here, when a threshold is reached, an event RTE_ETH_EVENT_RX_AVAIL_THRESH
is fired, and the application can get more info about what happened
by calling the function rte_eth_rx_avail_thresh_query().
Look at the parameters description:
"
@param[inout] queue_id
On input starting Rx queue index to search from.
If the queue_id is bigger than maximum queue ID of the port,
search is started from 0. So that application can keep calling
this function to handle all pending events with a simple increment
of queue_id on the next call.
On output if return value is 1, Rx queue index with the event pending.
@param[out] avail_thresh
Location for available descriptors threshold of the found Rx queue.
"
^ permalink raw reply [flat|nested] 3+ messages in thread
* [RFC PATCH] cryptodev: add return parameter to callback process API
@ 2022-06-24 12:12 Srujana Challa
2022-07-17 10:46 ` Thomas Monjalon
0 siblings, 1 reply; 3+ messages in thread
From: Srujana Challa @ 2022-06-24 12:12 UTC (permalink / raw)
To: gakhil, roy.fan.zhang; +Cc: dev, jerinj, ndabilpuram, anoobj
Adds a return parameter "uint16_t qp_id" to the functions
rte_cryptodev_pmd_callback_process and rte_cryptodev_cb_fn.
The new parameter is used to return queue pair ID to
the application when it gets error interrupt, so that
application can disable and enable the queue pair, to bring
the queue back to normal state.
Signed-off-by: Srujana Challa <schalla@marvell.com>
---
lib/cryptodev/cryptodev_pmd.h | 3 ++-
lib/cryptodev/rte_cryptodev.c | 8 ++++----
lib/cryptodev/rte_cryptodev.h | 9 ++++++---
3 files changed, 12 insertions(+), 8 deletions(-)
diff --git a/lib/cryptodev/cryptodev_pmd.h b/lib/cryptodev/cryptodev_pmd.h
index 3dcc3cb7ed..f087b58161 100644
--- a/lib/cryptodev/cryptodev_pmd.h
+++ b/lib/cryptodev/cryptodev_pmd.h
@@ -560,6 +560,7 @@ rte_cryptodev_pmd_destroy(struct rte_cryptodev *cryptodev);
* device.
* *
* @param dev Pointer to cryptodev struct
+ * @param qp_id To pass qp_id, which got interrupt, to user application.
* @param event Crypto device interrupt event type.
*
* @return
@@ -567,7 +568,7 @@ rte_cryptodev_pmd_destroy(struct rte_cryptodev *cryptodev);
*/
__rte_internal
void rte_cryptodev_pmd_callback_process(struct rte_cryptodev *dev,
- enum rte_cryptodev_event_type event);
+ uint16_t qp_id, enum rte_cryptodev_event_type event);
/**
* @internal
diff --git a/lib/cryptodev/rte_cryptodev.c b/lib/cryptodev/rte_cryptodev.c
index 42f3221052..eee208ce2d 100644
--- a/lib/cryptodev/rte_cryptodev.c
+++ b/lib/cryptodev/rte_cryptodev.c
@@ -1689,8 +1689,8 @@ rte_cryptodev_callback_unregister(uint8_t dev_id,
}
void
-rte_cryptodev_pmd_callback_process(struct rte_cryptodev *dev,
- enum rte_cryptodev_event_type event)
+rte_cryptodev_pmd_callback_process(struct rte_cryptodev *dev, uint16_t qp_id,
+ enum rte_cryptodev_event_type event)
{
struct rte_cryptodev_callback *cb_lst;
struct rte_cryptodev_callback dev_cb;
@@ -1702,8 +1702,8 @@ rte_cryptodev_pmd_callback_process(struct rte_cryptodev *dev,
dev_cb = *cb_lst;
cb_lst->active = 1;
rte_spinlock_unlock(&rte_cryptodev_cb_lock);
- dev_cb.cb_fn(dev->data->dev_id, dev_cb.event,
- dev_cb.cb_arg);
+ dev_cb.cb_fn(dev->data->dev_id, qp_id, dev_cb.event,
+ dev_cb.cb_arg);
rte_spinlock_lock(&rte_cryptodev_cb_lock);
cb_lst->active = 0;
}
diff --git a/lib/cryptodev/rte_cryptodev.h b/lib/cryptodev/rte_cryptodev.h
index 56f459c6a0..6b41262735 100644
--- a/lib/cryptodev/rte_cryptodev.h
+++ b/lib/cryptodev/rte_cryptodev.h
@@ -577,13 +577,16 @@ typedef uint16_t (*rte_cryptodev_callback_fn)(uint16_t dev_id, uint16_t qp_id,
* software for notification of device events
*
* @param dev_id Crypto device identifier
+ * @param qp_id Return parameter from driver to the application. Driver
+ * returns queue pair ID when it gets HW error interrupt.
+ * The application can release and setup the queue
+ * again, to bring the HW queue back to normal state.
* @param event Crypto device event to register for notification of.
* @param cb_arg User specified parameter to be passed as to passed to
* users callback function.
*/
-typedef void (*rte_cryptodev_cb_fn)(uint8_t dev_id,
- enum rte_cryptodev_event_type event, void *cb_arg);
-
+typedef void (*rte_cryptodev_cb_fn)(uint8_t dev_id, uint16_t qp_id,
+ enum rte_cryptodev_event_type event, void *cb_arg);
/** Crypto Device statistics */
struct rte_cryptodev_stats {
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-07-17 10:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-24 12:11 [RFC PATCH] cryptodev: add return parameter to callback process API Srujana Challa
2022-06-24 12:12 Srujana Challa
2022-07-17 10:46 ` 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).