1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright (c) 2015-2018 Atomic Rules LLC
11 /* system camel case definition changed to upper case */
15 /* Format specifiers for string data pairs */
16 #define ARK_SU32 "\n\t%-20s %'20" PRIU32
17 #define ARK_SU64 "\n\t%-20s %'20" PRIU64
18 #define ARK_SU64X "\n\t%-20s %#20" PRIx64
19 #define ARK_SPTR "\n\t%-20s %20p"
21 extern int ark_logtype;
23 #define ARK_PMD_LOG(level, fmt, args...) \
24 rte_log(RTE_LOG_ ##level, ark_logtype, "ARK: " fmt, ## args)
27 /* Debug macro to enable core debug code */
28 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
29 #define ARK_DEBUG_CORE 1
31 #define ARK_DEBUG_CORE 0