conditionally define PANIC_IF

This commit is contained in:
Kip Macy 2008-05-05 19:39:20 +00:00
parent a551ce1205
commit 805dc5adca
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=178791

View file

@ -29,10 +29,12 @@ typedef int32_t __s32;
#define IS_ERR(ptr) ((unsigned long)(ptr) > (unsigned long)(-1000))
#define PTR_ERR(ptr) ((long)(ptr))
#ifndef PANIC_IF
#define PANIC_IF(exp) do { \
if (exp) \
panic("BUG func %s line %u: %s", __FUNCTION__, __LINE__, #exp); \
} while (0)
#endif
#define container_of(p, stype, field) ((stype *)(((uint8_t *)(p)) - offsetof(stype, field)))