diff options
Diffstat (limited to 'arch/alpha/kernel/perf_event.c')
| -rw-r--r-- | arch/alpha/kernel/perf_event.c | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/alpha/kernel/perf_event.c b/arch/alpha/kernel/perf_event.c index 0dae252f7a3..d821b17047e 100644 --- a/arch/alpha/kernel/perf_event.c +++ b/arch/alpha/kernel/perf_event.c @@ -824,7 +824,6 @@ static void alpha_perf_event_irq_handler(unsigned long la_ptr,  	idx = la_ptr; -	perf_sample_data_init(&data, 0);  	for (j = 0; j < cpuc->n_events; j++) {  		if (cpuc->current_idx[j] == idx)  			break; @@ -848,7 +847,7 @@ static void alpha_perf_event_irq_handler(unsigned long la_ptr,  	hwc = &event->hw;  	alpha_perf_event_update(event, hwc, idx, alpha_pmu->pmc_max_period[idx]+1); -	data.period = event->hw.last_period; +	perf_sample_data_init(&data, 0, hwc->last_period);  	if (alpha_perf_event_set_period(event, hwc, idx)) {  		if (perf_event_overflow(event, &data, regs)) {  |