Renames the MIN
macro to _TRACEPOINT_TEST_MIN
.
From #31418:
0stderr:
1/virtual/main.c:70:9: warning: 'MIN' macro redefined [-Wmacro-redefined]
2 70 | #define MIN(a,b) ({ __typeof__ (a) _a = (a); __typeof__ (b) _b = (b); _a < _b ? _a : _b; })
3 | ^
4include/linux/minmax.h:329:9: note: previous definition is here
5 329 | #define MIN(a,b) __cmp(min,a,b)
6 | ^
71 warning generated.
fixes: #31418