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

Commit 55062d06 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

x86: fix typo in recent find_vma_prev purge



It turns out that test-compiling this file on x86-64 doesn't really
help, because much of it is x86-32-specific.  And so I hadn't noticed
the slightly over-eager removal of the 'r' from 'addr' variable despite
thinking I had tested it.

Signed-off-by: default avatarLinus "oopsie" Torvalds <torvalds@linux-foundation.org>
parent 097d5910
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -333,7 +333,7 @@ try_again:
		 * Lookup failure means no vma is above this address,
		 * i.e. return with success:
		 */
		vma = find_vma(mm, add);
		vma = find_vma(mm, addr);
		if (!vma)
			return addr;