mempool: fix slow allocation of large mempools
[dpdk.git] / drivers / common / qat / qat_logs.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018 Intel Corporation
3  */
4
5 #include <rte_log.h>
6 #include <rte_hexdump.h>
7
8 #include "qat_logs.h"
9
10 int qat_gen_logtype;
11 int qat_dp_logtype;
12
13 int
14 qat_hexdump_log(uint32_t level, uint32_t logtype, const char *title,
15                 const void *buf, unsigned int len)
16 {
17         if (level > rte_log_get_global_level())
18                 return 0;
19         if (level > (uint32_t)(rte_log_get_level(logtype)))
20                 return 0;
21
22         rte_hexdump(rte_log_get_stream(), title, buf, len);
23         return 0;
24 }
25
26 RTE_INIT(qat_pci_init_log)
27 {
28         /* Non-data-path logging for pci device and all services */
29         qat_gen_logtype = rte_log_register("pmd.qat_general");
30         if (qat_gen_logtype >= 0)
31                 rte_log_set_level(qat_gen_logtype, RTE_LOG_NOTICE);
32
33         /* data-path logging for all services */
34         qat_dp_logtype = rte_log_register("pmd.qat_dp");
35         if (qat_dp_logtype >= 0)
36                 rte_log_set_level(qat_dp_logtype, RTE_LOG_NOTICE);
37 }