CyberRota Analysis
AI-GeneratedThe vulnerability affects the Linux kernel, specifically in the sunxi_reset_init() function, where a failure in ioremap() results in a memory region leak due to the failure to release the allocated resource. This can lead to resource exhaustion and potential denial-of-service conditions in systems utilizing the affected code. Linux system administrators and developers working with the sunxi architecture should prioritize applying the fix to mitigate the risk of resource leaks.
Original NVD Description
In the Linux kernel, the following vulnerability has been resolved: reset: sunxi: fix memory region leak on ioremap failure In sunxi_reset_init(), when ioremap() fails, the memory region obtained via request_mem_region() is not released, leading to a resource leak. Add an err_mem_region label to properly release the memory region before freeing the data structure.