kernel/time/clockevents.c | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-)
Ensure proper error handling and logging when creating device files for
each CPU. If device creation or file creation fails, the function now
properly unregisters the device and removes any previously created files
to maintain system consistency.
Signed-off-by: Zhan Xusheng <zhanxusheng@xiaomi.com>
---
kernel/time/clockevents.c | 20 ++++++++++++++++----
1 file changed, 16 insertions(+), 4 deletions(-)
diff --git a/kernel/time/clockevents.c b/kernel/time/clockevents.c
index eaae1ce9f060..daa875f1d37c 100644
--- a/kernel/time/clockevents.c
+++ b/kernel/time/clockevents.c
@@ -756,12 +756,24 @@ static int __init tick_init_sysfs(void)
dev->id = cpu;
dev->bus = &clockevents_subsys;
err = device_register(dev);
- if (!err)
- err = device_create_file(dev, &dev_attr_current_device);
- if (!err)
- err = device_create_file(dev, &dev_attr_unbind_device);
if (err)
return err;
+
+ err = device_create_file(dev, &dev_attr_current_device);
+ if (err)
+ goto err_unregister;
+
+ err = device_create_file(dev, &dev_attr_unbind_device);
+ if (err)
+ goto err_remove_file;
+
+ continue;
+
+err_remove_file:
+ device_remove_file(dev, &dev_attr_current_device);
+err_unregister:
+ device_unregister(dev);
+ return err;
}
return tick_broadcast_init_sysfs();
}
--
2.43.0
On Tue, Feb 10 2026 at 15:27, Zhan Xusheng wrote:
> @@ -756,12 +756,24 @@ static int __init tick_init_sysfs(void)
> dev->id = cpu;
> dev->bus = &clockevents_subsys;
> err = device_register(dev);
> - if (!err)
> - err = device_create_file(dev, &dev_attr_current_device);
> - if (!err)
> - err = device_create_file(dev, &dev_attr_unbind_device);
> if (err)
> return err;
> +
> + err = device_create_file(dev, &dev_attr_current_device);
> + if (err)
> + goto err_unregister;
> +
> + err = device_create_file(dev, &dev_attr_unbind_device);
> + if (err)
> + goto err_remove_file;
> +
> + continue;
> +
> +err_remove_file:
> + device_remove_file(dev, &dev_attr_current_device);
> +err_unregister:
> + device_unregister(dev);
> + return err;
So this leaves already created per CPU files and devices around which is
inconsistent as well.
So what's the point of this half baked cleanup?
If this fails and it only can fail because of out of memory then the
system is doomed anyway. Cleanup up a couple of kilobytes wont make a
difference at all
Thanks,
tglx
© 2016 - 2026 Red Hat, Inc.