vm: fix vm_pgoff wrap in stack expansion
authorLinus Torvalds <[email protected]>
Wed, 13 Apr 2011 15:07:28 +0000 (08:07 -0700)
committerLinus Torvalds <[email protected]>
Wed, 13 Apr 2011 15:07:28 +0000 (08:07 -0700)
commita626ca6a656450e9f4df91d0dda238fff23285f4
tree7de7fabc83baf1312805d9b5f28f01d1adf3f7fd
parent60d48c1e67dc8de0676453de18adba1768fb6fab
vm: fix vm_pgoff wrap in stack expansion

Commit 982134ba6261 ("mm: avoid wrapping vm_pgoff in mremap()") fixed
the case of a expanding mapping causing vm_pgoff wrapping when you used
mremap.  But there was another case where we expand mappings hiding in
plain sight: the automatic stack expansion.

This fixes that case too.

This one also found by Robert Święcki, using his nasty system call
fuzzer tool.  Good job.

Reported-and-tested-by: Robert Święcki <[email protected]>
Cc: [email protected]
Signed-off-by: Linus Torvalds <[email protected]>
mm/mmap.c