diff --git a/[refs] b/[refs] index 93f83d1c5517..8b68105b2626 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 7fa07729e439a6184bd824746d06a49cca553f15 +refs/heads/master: fa081b00a80ef3f4575c99af6e97d29e1628cf51 diff --git a/trunk/include/linux/kmemcheck.h b/trunk/include/linux/kmemcheck.h index c8006607f947..136cdcdf92ef 100644 --- a/trunk/include/linux/kmemcheck.h +++ b/trunk/include/linux/kmemcheck.h @@ -145,10 +145,12 @@ static inline bool kmemcheck_is_obj_initialized(unsigned long addr, size_t size) #define kmemcheck_annotate_bitfield(ptr, name) \ do { \ + int _n; \ + \ if (!ptr) \ break; \ \ - int _n = (long) &((ptr)->name##_end) \ + _n = (long) &((ptr)->name##_end) \ - (long) &((ptr)->name##_begin); \ BUILD_BUG_ON(_n < 0); \ \