diff options
Diffstat (limited to 'arch/x86/events/intel/bts.c')
| -rw-r--r-- | arch/x86/events/intel/bts.c | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/arch/x86/events/intel/bts.c b/arch/x86/events/intel/bts.c index 6320d2cfd9d3..974e917e65b2 100644 --- a/arch/x86/events/intel/bts.c +++ b/arch/x86/events/intel/bts.c @@ -209,6 +209,12 @@ static void bts_update(struct bts_ctx *bts)  	} else {  		local_set(&buf->data_size, head);  	} + +	/* +	 * Since BTS is coherent, just add compiler barrier to ensure +	 * BTS updating is ordered against bts::handle::event. +	 */ +	barrier();  }  static int |