]> git.baikalelectronics.ru Git - kernel.git/commit
mm/mmap.c: don't unlock VMAs in remap_file_pages()
authorLiam Howlett <liam.howlett@oracle.com>
Wed, 5 May 2021 01:38:06 +0000 (18:38 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 5 May 2021 18:27:25 +0000 (11:27 -0700)
commit69e5ac4ee8525655cc3a3f8910fea7c3a942adc9
tree15faa9c80948a712564773a111b75a8c7673162f
parentb11e9af9e7e3a27a0b707731dc588dfc369753cc
mm/mmap.c: don't unlock VMAs in remap_file_pages()

Since this call uses MAP_FIXED, do_mmap() will munlock the necessary
range.  There is also an error in the loop test expression which will
evaluate as false and the loop body has never execute.

Link: https://lkml.kernel.org/r/20210223235010.3465663-1-Liam.Howlett@Oracle.com
Signed-off-by: Liam R. Howlett <Liam.Howlett@Oracle.com>
Acked-by: Hugh Dickins <hughd@google.com>
Reviewed-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/mmap.c