The driver consume 208B of tailroom but has min requirement as 8B and headroom needed is 48B, but minimum requirement is set as 24B. This patch correct minimum requirements which application should honour. Signed-off-by: Akhil Goyal <gakhil@marvell.com> Acked-by: Anoob Joseph <anoobj@marvell.com>
16 lines
345 B
C
16 lines
345 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright (C) 2019 Marvell International Ltd.
|
|
*/
|
|
|
|
#ifndef _OTX2_CRYPTODEV_OPS_H_
|
|
#define _OTX2_CRYPTODEV_OPS_H_
|
|
|
|
#include <cryptodev_pmd.h>
|
|
|
|
#define OTX2_CPT_MIN_HEADROOM_REQ 48
|
|
#define OTX2_CPT_MIN_TAILROOM_REQ 208
|
|
|
|
extern struct rte_cryptodev_ops otx2_cpt_ops;
|
|
|
|
#endif /* _OTX2_CRYPTODEV_OPS_H_ */
|