On Thu, 02 Apr 2026 14:37:52 +0900, Eliot Courtney wrote:
> + /// Compute the end of physical VRAM from all FB regions.
> + pub(crate) fn total_fb_end(&self) -> Option<u64> {
> + self.fb_regions()
> + .map(|reg| reg.limit.saturating_add(1))
>
> I think it would be better to used checked_add here.Fixed, thanks. -- Joel Fernandes
