9b178f5221f05c458863d2a7735eb419b5b31461
[dpdk.git] / drivers / net / mlx4 / mlx4_utils.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2017 6WIND S.A.
5  *   Copyright 2017 Mellanox
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of 6WIND S.A. nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef MLX4_UTILS_H_
35 #define MLX4_UTILS_H_
36
37 #include <rte_common.h>
38 #include <rte_log.h>
39
40 #include "mlx4.h"
41
42 #ifndef NDEBUG
43
44 /*
45  * When debugging is enabled (NDEBUG not defined), file, line and function
46  * information replace the driver name (MLX4_DRIVER_NAME) in log messages.
47  */
48
49 /* Return the file name part of a path. */
50 static inline const char *
51 pmd_drv_log_basename(const char *s)
52 {
53         const char *n = s;
54
55         while (*n)
56                 if (*(n++) == '/')
57                         s = n;
58         return s;
59 }
60
61 #define PMD_DRV_LOG(level, ...) \
62         RTE_LOG(level, PMD, \
63                 RTE_FMT("%s:%u: %s(): " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
64                         pmd_drv_log_basename(__FILE__), \
65                         __LINE__, \
66                         __func__, \
67                         RTE_FMT_TAIL(__VA_ARGS__,)))
68 #define DEBUG(...) PMD_DRV_LOG(DEBUG, __VA_ARGS__)
69 #ifndef MLX4_PMD_DEBUG_BROKEN_VERBS
70 #define claim_zero(...) assert((__VA_ARGS__) == 0)
71 #else /* MLX4_PMD_DEBUG_BROKEN_VERBS */
72 #define claim_zero(...) \
73         (void)(((__VA_ARGS__) == 0) || \
74                 DEBUG("Assertion `(" # __VA_ARGS__ ") == 0' failed (IGNORED)."))
75 #endif /* MLX4_PMD_DEBUG_BROKEN_VERBS */
76
77 #else /* NDEBUG */
78
79 /*
80  * Like assert(), DEBUG() becomes a no-op and claim_zero() does not perform
81  * any check when debugging is disabled.
82  */
83
84 #define PMD_DRV_LOG(level, ...) \
85         RTE_LOG(level, PMD, \
86                 RTE_FMT(MLX4_DRIVER_NAME ": " \
87                         RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
88                 RTE_FMT_TAIL(__VA_ARGS__,)))
89 #define DEBUG(...) (void)0
90 #define claim_zero(...) (__VA_ARGS__)
91
92 #endif /* NDEBUG */
93
94 #define INFO(...) PMD_DRV_LOG(INFO, __VA_ARGS__)
95 #define WARN(...) PMD_DRV_LOG(WARNING, __VA_ARGS__)
96 #define ERROR(...) PMD_DRV_LOG(ERR, __VA_ARGS__)
97
98 /* mlx4_utils.c */
99
100 int mlx4_fd_set_non_blocking(int fd);
101
102 #endif /* MLX4_UTILS_H_ */