cryptodev: remove max number of sessions per queue
The cryptodev info structure currently contains the maximum number of sessions that can be used in a queue pair. This is only set in DPAA_SEC PMD, and since it is calculated based on the maximum number of sessions (which is not used anymore), this field can be removed. Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
This commit is contained in:
parent
a4493be5bd
commit
ee4a3aa404
@ -2215,9 +2215,6 @@ dpaa_sec_dev_infos_get(struct rte_cryptodev *dev,
|
|||||||
info->feature_flags = dev->feature_flags;
|
info->feature_flags = dev->feature_flags;
|
||||||
info->capabilities = dpaa_sec_capabilities;
|
info->capabilities = dpaa_sec_capabilities;
|
||||||
info->sym.max_nb_sessions = internals->max_nb_sessions;
|
info->sym.max_nb_sessions = internals->max_nb_sessions;
|
||||||
info->sym.max_nb_sessions_per_qp =
|
|
||||||
RTE_DPAA_SEC_PMD_MAX_NB_SESSIONS /
|
|
||||||
RTE_DPAA_MAX_NB_SEC_QPS;
|
|
||||||
info->driver_id = cryptodev_driver_id;
|
info->driver_id = cryptodev_driver_id;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -350,10 +350,6 @@ struct rte_cryptodev_info {
|
|||||||
struct {
|
struct {
|
||||||
unsigned max_nb_sessions;
|
unsigned max_nb_sessions;
|
||||||
/**< Maximum number of sessions supported by device. */
|
/**< Maximum number of sessions supported by device. */
|
||||||
unsigned int max_nb_sessions_per_qp;
|
|
||||||
/**< Maximum number of sessions per queue pair.
|
|
||||||
* Default 0 for infinite sessions
|
|
||||||
*/
|
|
||||||
} sym;
|
} sym;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user