aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/common/qat/qat_logs.c
blob: 7a861709610da87ed61bfd4f58d0864b40a5a146 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright(c) 2018 Intel Corporation
 */

#include <rte_log.h>
#include <rte_hexdump.h>

#include "qat_logs.h"

int qat_gen_logtype;
int qat_dp_logtype;

int
qat_hexdump_log(uint32_t level, uint32_t logtype, const char *title,
		const void *buf, unsigned int len)
{
	if (level > rte_log_get_global_level())
		return 0;
	if (level > (uint32_t)(rte_log_get_level(logtype)))
		return 0;

	rte_hexdump(rte_logs.file == NULL ? stderr : rte_logs.file,
				title, buf, len);
	return 0;
}

RTE_INIT(qat_pci_init_log)
{
	/* Non-data-path logging for pci device and all services */
	qat_gen_logtype = rte_log_register("pmd.qat_general");
	if (qat_gen_logtype >= 0)
		rte_log_set_level(qat_gen_logtype, RTE_LOG_NOTICE);

	/* data-path logging for all services */
	qat_dp_logtype = rte_log_register("pmd.qat_dp");
	if (qat_dp_logtype >= 0)
		rte_log_set_level(qat_dp_logtype, RTE_LOG_NOTICE);
}