From: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
To: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Cc: Ganesh Mahendran <opensource.ganesh@gmail.com>,
sergey.senozhatsky.work@gmail.com,
Minchan Kim <minchan@kernel.org>,
Andrew Morton <akpm@linux-foundation.org>,
Jerome Marchand <jmarchan@redhat.com>,
linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] zram: fix umount-reset_store-mount race condition
Date: Wed, 4 Feb 2015 00:06:24 +0900 [thread overview]
Message-ID: <20150203150624.GB1046@swordfish> (raw)
In-Reply-To: <20150203145200.GA1046@swordfish>
On (02/03/15 23:52), Sergey Senozhatsky wrote:
> On (02/03/15 23:15), Sergey Senozhatsky wrote:
> > > How about keep this here? Protected by zram->init_lock.
> > > set_capacity(zram->disk, 0);
> >
> > why?
> >
> yeah, I see why. good catch.
>
> hm, why do we perform destroy_device() before zram_reset_device() in
> zram_exit()?
>
> how about doing something like this (I don't want to return
> that bool param back):
disregard the last one.
this is done to remove sysfs before we do reset, so we don't race module
unload with `echo 2G > /.../disksize', f.e.
well, several options:
1) move ->init_lock from zram_reset_device() to its callers.
iow, do
down_write(&zram->init_lock);
zram_reset_device(zram);
up_write(&zram->init_lock);
2) remove sysfs group separate, before zram_reset_device() in
zram_exit()
sysfs_remove_group()
zram_reset_device();
destroy_device();
3) return back bool reset_capacity to zram_reset_device(). but this one
is somewhat ungly. destroy() before reset() loks misleading, besides,
after destroy() in zram_reset_device() we
/*
* Shouldn't access zram->disk after destroy_device
* because destroy_device already released zram->disk.
*/
so we have garbaged ->disk pointer there, which is quite unsafe.
-ss
next prev parent reply other threads:[~2015-02-03 15:05 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-02 14:08 [PATCH] zram: fix umount-reset_store-mount race condition Sergey Senozhatsky
2015-02-03 3:01 ` Minchan Kim
2015-02-03 14:05 ` Ganesh Mahendran
2015-02-03 14:15 ` Sergey Senozhatsky
2015-02-03 14:52 ` Sergey Senozhatsky
2015-02-03 15:06 ` Sergey Senozhatsky [this message]
2015-02-03 15:39 ` Minchan Kim
2015-02-03 16:20 ` Sergey Senozhatsky
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=20150203150624.GB1046@swordfish \
--to=sergey.senozhatsky@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=jmarchan@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=minchan@kernel.org \
--cc=opensource.ganesh@gmail.com \
--cc=sergey.senozhatsky.work@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.