In afs_writepages_region(), inside the loop where we find dirty pages to
deal with, one of the if-statements is missing a put_page().

Signed-off-by: David Howells <dhowells@redhat.com>
This commit is contained in:
David Howells 2017-03-16 16:27:43 +00:00
Родитель 69eea5a4ab
Коммит 29c8bbbd6e
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -513,6 +513,7 @@ static int afs_writepages_region(struct address_space *mapping,
if (PageWriteback(page) || !PageDirty(page)) {
unlock_page(page);
put_page(page);
continue;
}