1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018 Intel Corporation
6 #include <rte_hexdump.h>
14 qat_hexdump_log(uint32_t level, uint32_t logtype, const char *title,
15 const void *buf, unsigned int len)
17 if (level > rte_log_get_global_level())
19 if (level > (uint32_t)(rte_log_get_level(logtype)))
22 rte_hexdump(rte_logs.file == NULL ? stderr : rte_logs.file,
27 RTE_INIT(qat_pci_init_log)
29 /* Non-data-path logging for pci device and all services */
30 qat_gen_logtype = rte_log_register("pmd.qat_general");
31 if (qat_gen_logtype >= 0)
32 rte_log_set_level(qat_gen_logtype, RTE_LOG_NOTICE);
34 /* data-path logging for all services */
35 qat_dp_logtype = rte_log_register("pmd.qat_dp");
36 if (qat_dp_logtype >= 0)
37 rte_log_set_level(qat_dp_logtype, RTE_LOG_NOTICE);