Hi all, Today's linux-next merge of the kmemcheck tree got a conflict in include/linux/ring_buffer.h between commit 334d4169a6592d3fcd863bbe822a8f6985ffa9af ("ring_buffer: compressed event header") from the tracing tree and commits 9b7ff384ee76ced9638ab236db588a6f13916336 ("trace: annotate bitfields in struct ring_buffer_event") and 3467e18b1cf34c7d316af5717e7053ce845d014e ("kmemcheck: make bitfield annotations be valid C") from the kmemcheck tree. I fixed it up (see below) and can carry the fix as necessary. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc include/linux/ring_buffer.h index f134582,771ee90..0000000 --- a/include/linux/ring_buffer.h +++ b/include/linux/ring_buffer.h @@@ -11,7 -12,10 +12,10 @@@ struct ring_buffer_iter * Don't refer to this struct directly, use functions below. */ struct ring_buffer_event { + kmemcheck_bitfield_begin(bitfield); - u32 type:2, len:3, time_delta:27; + u32 type_len:5, time_delta:27; + kmemcheck_bitfield_end(bitfield); + u32 array[]; }; -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html