From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fiona Trahe Subject: [PATCH v4 12/16] compress/qat: add device start and stop fns Date: Tue, 10 Jul 2018 01:41:47 +0100 Message-ID: <1531183311-32619-13-git-send-email-fiona.trahe@intel.com> References: <1530811980-24334-1-git-send-email-fiona.trahe@intel.com> Cc: pablo.de.lara.guarch@intel.com, fiona.trahe@intel.com, tomaszx.jozwiak@intel.com To: dev@dpdk.org Return-path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 72B6C1B14D for ; Tue, 10 Jul 2018 02:42:32 +0200 (CEST) In-Reply-To: <1530811980-24334-1-git-send-email-fiona.trahe@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" There are no specific actions needed to start/stop a QAT comp device so these are just trivial fns to satisfy the pmd API. Signed-off-by: Fiona Trahe --- drivers/compress/qat/qat_comp_pmd.c | 11 +++++++++++ drivers/compress/qat/qat_comp_pmd.h | 6 ++++++ 2 files changed, 17 insertions(+) diff --git a/drivers/compress/qat/qat_comp_pmd.c b/drivers/compress/qat/qat_comp_pmd.c index 086b6cf..1ab5cf7 100644 --- a/drivers/compress/qat/qat_comp_pmd.c +++ b/drivers/compress/qat/qat_comp_pmd.c @@ -176,6 +176,17 @@ qat_comp_dev_config(struct rte_compressdev *dev, return ret; } +int +qat_comp_dev_start(struct rte_compressdev *dev __rte_unused) +{ + return 0; +} + +void +qat_comp_dev_stop(struct rte_compressdev *dev __rte_unused) +{ + +} int qat_comp_dev_close(struct rte_compressdev *dev) diff --git a/drivers/compress/qat/qat_comp_pmd.h b/drivers/compress/qat/qat_comp_pmd.h index f360c29..22cbefb 100644 --- a/drivers/compress/qat/qat_comp_pmd.h +++ b/drivers/compress/qat/qat_comp_pmd.h @@ -62,5 +62,11 @@ uint16_t qat_comp_pmd_dequeue_op_burst(void *qp, struct rte_comp_op **ops, uint16_t nb_ops); +int +qat_comp_dev_start(struct rte_compressdev *dev __rte_unused); + +void +qat_comp_dev_stop(struct rte_compressdev *dev __rte_unused); + #endif #endif /* _QAT_COMP_PMD_H_ */ -- 2.7.4