linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
To: Seth Jennings <sjenning@redhat.com>, Dan Streetman <ddstreet@ieee.org>
Cc: linux-mm@kvack.org, "Vitaly Wool" <vitalywool@gmail.com>,
	"Marcin Mirosław" <marcin@mejor.pl>,
	"Andrew Morton" <akpm@linux-foundation.org>
Subject: Re: Choosing z3fold allocator in zswap gives WARNING: CPU: 0 PID: 5140 at mm/zswap.c:503 __zswap_pool_current+0x56/0x60
Date: Thu, 4 Aug 2016 20:58:40 +0900	[thread overview]
Message-ID: <20160804115809.GA447@swordfish> (raw)
In-Reply-To: <2f8a65db-e5a8-75f0-8c08-daa41e1cd3ba@mejor.pl>

Hello,

Cc Seth, Dan

On (08/01/16 11:03), Marcin MirosA?aw wrote:
> [  429.722411] ------------[ cut here ]------------
> [  429.723476] WARNING: CPU: 0 PID: 5140 at mm/zswap.c:503 __zswap_pool_current+0x56/0x60
> [  429.740048] Call Trace:
> [  429.740048]  [<ffffffffad255d43>] dump_stack+0x63/0x90
> [  429.740048]  [<ffffffffad04c997>] __warn+0xc7/0xf0
> [  429.740048]  [<ffffffffad04cac8>] warn_slowpath_null+0x18/0x20
> [  429.740048]  [<ffffffffad1250c6>] __zswap_pool_current+0x56/0x60
> [  429.740048]  [<ffffffffad1250e3>] zswap_pool_current+0x13/0x20
> [  429.740048]  [<ffffffffad125efb>] __zswap_param_set+0x1db/0x2f0
> [  429.740048]  [<ffffffffad126042>] zswap_zpool_param_set+0x12/0x20
> [  429.740048]  [<ffffffffad06645f>] param_attr_store+0x5f/0xc0
> [  429.740048]  [<ffffffffad065b69>] module_attr_store+0x19/0x30
> [  429.740048]  [<ffffffffad1b0b02>] sysfs_kf_write+0x32/0x40
> [  429.740048]  [<ffffffffad1b0663>] kernfs_fop_write+0x113/0x190
> [  429.740048]  [<ffffffffad13fc52>] __vfs_write+0x32/0x150
> [  429.740048]  [<ffffffffad15f0ae>] ? __fd_install+0x2e/0xe0
> [  429.740048]  [<ffffffffad15ef11>] ? __alloc_fd+0x41/0x180
> [  429.740048]  [<ffffffffad0838dd>] ? percpu_down_read+0xd/0x50
> [  429.740048]  [<ffffffffad140d33>] vfs_write+0xb3/0x1a0
> [  429.740048]  [<ffffffffad13db81>] ? filp_close+0x51/0x70
> [  429.740048]  [<ffffffffad142140>] SyS_write+0x50/0xc0
> [  429.740048]  [<ffffffffad413836>] entry_SYSCALL_64_fastpath+0x1e/0xa8
> [  429.764069] ---[ end trace ff7835fbf4d983b9 ]---

I think it's something like this.

suppose there are no pools available - the list is empty (see later).
__zswap_param_set():

	pool = zswap_pool_find_get(type, compressor);

gives NULL. so it creates a new one

	pool = zswap_pool_create(type, compressor);

then it does

	ret = param_set_charp(s, kp);

which gives 0 -- all ok. so it goes to

	if (!ret) {
		put_pool = zswap_pool_current();
	}

which gives WARN_ON(), as the list is still empty.



now, how is this possible. for example, we init a zswap with the default
configuration; but zbud is not available (can it be?). so the pool creation
fails, but init_zswap() does not set zswap_init_started back to false. it
either must clear it at the error path, or set it to true right before
'return 0'.

one more problem here is that param_set_charp() does GFP_KERNEL
under zswap_pools_lock.

	-ss

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  parent reply	other threads:[~2016-08-04 11:58 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-01  9:03 Choosing z3fold allocator in zswap gives WARNING: CPU: 0 PID: 5140 at mm/zswap.c:503 __zswap_pool_current+0x56/0x60 Marcin Mirosław
2016-08-01  9:08 ` Vitaly Wool
2016-08-01  9:21   ` Marcin Mirosław
2016-08-02  9:13     ` Vitaly Wool
2016-08-02  9:52       ` Marcin Mirosław
2016-08-04 11:58 ` Sergey Senozhatsky [this message]
2016-08-04 18:15   ` Dan Streetman
2016-08-05  0:43     ` Sergey Senozhatsky
2016-08-05  1:22       ` Sergey Senozhatsky
2016-08-07 22:40   ` Vitaly Wool

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=20160804115809.GA447@swordfish \
    --to=sergey.senozhatsky.work@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=ddstreet@ieee.org \
    --cc=linux-mm@kvack.org \
    --cc=marcin@mejor.pl \
    --cc=sjenning@redhat.com \
    --cc=vitalywool@gmail.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).