1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright (C) 2022 Intel Corporation. 3 * All rights reserved. 4 */ 5 6 #include "spdk/stdinc.h" 7 8 enum compress_pmd { 9 COMPRESS_PMD_AUTO = 0, 10 COMPRESS_PMD_QAT_ONLY, 11 COMPRESS_PMD_MLX5_PCI_ONLY, 12 COMPRESS_PMD_UADK_ONLY, 13 COMPRESS_PMD_MAX, 14 }; 15 16 void accel_dpdk_compressdev_enable(void); 17 int accel_compressdev_enable_probe(enum compress_pmd *opts); 18