In kernel.h min is defined as:
#define min(x, y) ({ \
typeof(x) _min1 = (x); \
typeof(y) _min2 = (y); \
(void) (&_min1 == &_min2); \
_min1 < _min2 ? _min1 : _min2; })
I don't understand what the line (void) (&_min1 == &_min2); does. Is it some kind of type checking or something?