The patch titled Subject: z3fold: fix locking issues has been added to the -mm tree. Its filename is z3fold-fix-locking-issues.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/z3fold-fix-locking-issues.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/z3fold-fix-locking-issues.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Vitaly Wool <vitalywool@xxxxxxxxx> Subject: z3fold: fix locking issues Commit 570931c ("z3fold: use per-page spinlock") introduced locking issues in reclaim function reported in [1] and [2]. This patch addresses these issues, also fixing the check for empty lru list (it was only checked once, while it should be checked every time we want to get the last lru entry). [1] https://lkml.org/lkml/2016/11/25/628 [2] http://www.spinics.net/lists/linux-mm/msg117227.html Link: http://lkml.kernel.org/r/20161126202121.baba91a6e67858648e5d1d2f@xxxxxxxxx Signed-off-by: Vitaly Wool <vitalywool@xxxxxxxxx> Cc: Dan Streetman <ddstreet@xxxxxxxx> Cc: Arnd Bergmann <arnd@xxxxxxxx> Cc: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/z3fold.c | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff -puN mm/z3fold.c~z3fold-fix-locking-issues mm/z3fold.c --- a/mm/z3fold.c~z3fold-fix-locking-issues +++ a/mm/z3fold.c @@ -615,12 +615,15 @@ static int z3fold_reclaim_page(struct z3 unsigned long first_handle = 0, middle_handle = 0, last_handle = 0; spin_lock(&pool->lock); - if (!pool->ops || !pool->ops->evict || list_empty(&pool->lru) || - retries == 0) { + if (!pool->ops || !pool->ops->evict || retries == 0) { spin_unlock(&pool->lock); return -EINVAL; } for (i = 0; i < retries; i++) { + if (list_empty(&pool->lru)) { + spin_unlock(&pool->lock); + return -EINVAL; + } page = list_last_entry(&pool->lru, struct page, lru); list_del(&page->lru); @@ -679,8 +682,7 @@ next: * All buddies are now free, free the z3fold page and * return success. */ - clear_bit(PAGE_HEADLESS, &page->private); - if (!test_bit(PAGE_HEADLESS, &page->private)) + if (!test_and_clear_bit(PAGE_HEADLESS, &page->private)) z3fold_page_unlock(zhdr); free_z3fold_page(zhdr); atomic64_dec(&pool->pages_nr); @@ -692,6 +694,7 @@ next: /* Full, add to buddied list */ spin_lock(&pool->lock); list_add(&zhdr->buddy, &pool->buddied); + spin_unlock(&pool->lock); } else { int compacted = z3fold_compact_page(zhdr); /* add to unbuddied list */ @@ -703,15 +706,18 @@ next: else list_add_tail(&zhdr->buddy, &pool->unbuddied[freechunks]); + spin_unlock(&pool->lock); } } + if (!test_bit(PAGE_HEADLESS, &page->private)) + z3fold_page_unlock(zhdr); + + spin_lock(&pool->lock); /* add to beginning of LRU */ list_add(&page->lru, &pool->lru); } spin_unlock(&pool->lock); - if (!test_bit(PAGE_HEADLESS, &page->private)) - z3fold_page_unlock(zhdr); return -EAGAIN; } _ Patches currently in -mm which might be from vitalywool@xxxxxxxxx are z3fold-make-pages_nr-atomic.patch z3fold-extend-compaction-function.patch z3fold-use-per-page-spinlock.patch z3fold-discourage-use-of-pages-that-werent-compacted.patch z3fold-fix-header-size-related-issues.patch z3fold-fix-locking-issues.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html