linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: Henry Burns <henryburns@google.com>
Cc: Vitaly Wool <vitalywool@gmail.com>,
	Vitaly Vul <vitaly.vul@sony.com>,
	Mike Rapoport <rppt@linux.vnet.ibm.com>,
	Xidong Wang <wangxidong_97@163.com>,
	Shakeel Butt <shakeelb@google.com>,
	Jonathan Adams <jwadams@google.com>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] mm/z3fold.c: Lock z3fold page before  __SetPageMovable()
Date: Mon, 1 Jul 2019 16:32:11 -0700	[thread overview]
Message-ID: <20190701163211.e9e0f2cf5332c06640e3019d@linux-foundation.org> (raw)
In-Reply-To: <20190701212303.168581-1-henryburns@google.com>

On Mon,  1 Jul 2019 14:23:03 -0700 Henry Burns <henryburns@google.com> wrote:

> __SetPageMovable() expects it's page to be locked, but z3fold.c doesn't
> lock the page.

So this triggers the VM_BUG_ON_PAGE(!PageLocked(page), page) in
__SetPageMovable(), yes?

> Following zsmalloc.c's example we call trylock_page() and
> unlock_page(). Also makes z3fold_page_migrate() assert that newpage is
> passed in locked, as documentation.
> 
> ...
>
> --- a/mm/z3fold.c
> +++ b/mm/z3fold.c
> @@ -918,7 +918,9 @@ static int z3fold_alloc(struct z3fold_pool *pool, size_t size, gfp_t gfp,
>  		set_bit(PAGE_HEADLESS, &page->private);
>  		goto headless;
>  	}
> +	WARN_ON(!trylock_page(page));

If this warn triggers then someone else has locked the page.

>	__SetPageMovable(page, pool->inode->i_mapping);
> + 	unlock_page(page);

and we proceed to undo their lock.  So that other code path will then
perform an unlock of an unlocked page.  Etcetera.

It would be much much better to do a plain old lock_page() here.  If
that results in a deadlock then let's find out why and fix it without
trylock hacks.



      reply	other threads:[~2019-07-01 23:32 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-01 21:23 [PATCH] mm/z3fold.c: Lock z3fold page before __SetPageMovable() Henry Burns
2019-07-01 23:32 ` Andrew Morton [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190701163211.e9e0f2cf5332c06640e3019d@linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=henryburns@google.com \
    --cc=jwadams@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=rppt@linux.vnet.ibm.com \
    --cc=shakeelb@google.com \
    --cc=vitaly.vul@sony.com \
    --cc=vitalywool@gmail.com \
    --cc=wangxidong_97@163.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).