0f0b051f1ec66257f60f8828857f6db8e2a03981
[dpdk.git] / drivers / crypto / bcmfs / bcmfs_sym_req.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2020 Broadcom
3  * All rights reserved.
4  */
5
6 #ifndef _BCMFS_SYM_REQ_H_
7 #define _BCMFS_SYM_REQ_H_
8
9 #include "bcmfs_dev_msg.h"
10
11 /*
12  * This structure hold the supportive data required to process a
13  * rte_crypto_op
14  */
15 struct bcmfs_sym_request {
16         /* bcmfs qp message for h/w queues to process */
17         struct bcmfs_qp_message msgs;
18         /* crypto op */
19         struct rte_crypto_op *op;
20 };
21
22 #endif /* _BCMFS_SYM_REQ_H_ */