Merge tag 'timers_urgent_for_v6.18_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull timer fix from Borislav Petkov:

- Do not create more than eight (max supported) AUX clocks sysfs
hierarchies

* tag 'timers_urgent_for_v6.18_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
timekeeping: Fix aux clocks sysfs initialization loop bound

+1 -1
+1 -1
kernel/time/timekeeping.c
··· 3070 3070 return -ENOMEM; 3071 3071 } 3072 3072 3073 - for (int i = 0; i <= MAX_AUX_CLOCKS; i++) { 3073 + for (int i = 0; i < MAX_AUX_CLOCKS; i++) { 3074 3074 char id[2] = { [0] = '0' + i, }; 3075 3075 struct kobject *clk = kobject_create_and_add(id, auxo); 3076 3076