Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 24655e09 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "mm/pagewalk.c: fix walk_page_range() access of wrong PTEs"

parents 1a408ce6 b3a8b72c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -242,7 +242,7 @@ int walk_page_range(unsigned long addr, unsigned long end,
		if (err)
			break;
		pgd++;
	} while (addr = next, addr != end);
	} while (addr = next, addr < end);

	return err;
}