Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'perf_urgent_for_v6.3_rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull perf fix from Borislav Petkov:

- Properly clear perf event status tracking in the AMD perf event
overflow handler

* tag 'perf_urgent_for_v6.3_rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
perf/x86/amd/core: Always clear status for idx

+1 -2
+1 -2
arch/x86/events/amd/core.c
··· 923 923 924 924 /* Event overflow */ 925 925 handled++; 926 + status &= ~mask; 926 927 perf_sample_data_init(&data, 0, hwc->last_period); 927 928 928 929 if (!x86_perf_event_set_period(event)) ··· 934 933 935 934 if (perf_event_overflow(event, &data, regs)) 936 935 x86_pmu_stop(event, 0); 937 - 938 - status &= ~mask; 939 936 } 940 937 941 938 /*