mirror of https://github.com/F-Stack/f-stack.git
35 lines
930 B
C
35 lines
930 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2020 Broadcom
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef _BCMFS_LOGS_H_
|
|
#define _BCMFS_LOGS_H_
|
|
|
|
#include <rte_log.h>
|
|
|
|
extern int bcmfs_conf_logtype;
|
|
extern int bcmfs_dp_logtype;
|
|
|
|
#define BCMFS_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, bcmfs_conf_logtype, \
|
|
"%s(): " fmt "\n", __func__, ## args)
|
|
|
|
#define BCMFS_DP_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, bcmfs_dp_logtype, \
|
|
"%s(): " fmt "\n", __func__, ## args)
|
|
|
|
#define BCMFS_DP_HEXDUMP_LOG(level, title, buf, len) \
|
|
bcmfs_hexdump_log(RTE_LOG_ ## level, bcmfs_dp_logtype, title, buf, len)
|
|
|
|
/**
|
|
* bcmfs_hexdump_log Dump out memory in a special hex dump format.
|
|
*
|
|
* The message will be sent to the stream used by the rte_log infrastructure.
|
|
*/
|
|
int
|
|
bcmfs_hexdump_log(uint32_t level, uint32_t logtype, const char *heading,
|
|
const void *buf, unsigned int len);
|
|
|
|
#endif /* _BCMFS_LOGS_H_ */
|