e07a3ed786
This patch ensures that the OPDL files all contain correct SPDX tags. The following changes were made to achieve this: * replace license text with SPDX tag * correct occurences where SPDX tag was not on first line of file * ensure license years were correct Fixes:4236ce9bf5
("event/opdl: add OPDL ring infrastructure library") Fixes:3c7f3dcfb0
("event/opdl: add PMD main body and helper function") Fixes:d548ef513c
("event/opdl: add unit tests") Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Liang Ma <liang.j.ma@intel.com>
22 lines
436 B
C
22 lines
436 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2017 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _OPDL_LOGS_H_
|
|
#define _OPDL_LOGS_H_
|
|
|
|
#include <rte_log.h>
|
|
|
|
extern int opdl_logtype_driver;
|
|
|
|
#define PMD_DRV_LOG_RAW(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, opdl_logtype_driver, "%s(): " fmt, \
|
|
__func__, ## args)
|
|
|
|
#define PMD_DRV_LOG(level, fmt, args...) \
|
|
PMD_DRV_LOG_RAW(level, fmt "\n", ## args)
|
|
|
|
|
|
|
|
#endif /* _OPDL_LOGS_H_ */
|