From: Jan Kara <jack@suse.cz>
To: Yafang Shao <laoar.shao@gmail.com>
Cc: Jan Kara <jack@suse.cz>,
akpm@linux-foundation.org, Johannes Weiner <hannes@cmpxchg.org>,
mhocko@suse.com, vdavydov.dev@gmail.com, jlayton@redhat.com,
nborisov@suse.com, Theodore Ts'o <tytso@mit.edu>,
mawilcox@microsoft.com, linux-mm@kvack.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] mm: introduce validity check on vm dirtiness settings
Date: Wed, 20 Sep 2017 17:33:26 +0200 [thread overview]
Message-ID: <20170920153326.GH11106@quack2.suse.cz> (raw)
In-Reply-To: <CALOAHbAhnno94Jo1uLe3QzYhbAsc=wuHVXTvurCoVhe6YFnPyw@mail.gmail.com>
On Tue 19-09-17 19:48:00, Yafang Shao wrote:
> 2017-09-19 16:35 GMT+08:00 Jan Kara <jack@suse.cz>:
> > On Tue 19-09-17 06:53:00, Yafang Shao wrote:
> >> + if (vm_dirty_bytes == 0 && vm_dirty_ratio == 0 &&
> >> + (dirty_background_bytes != 0 || dirty_background_ratio != 0))
> >> + ret = false;
> >
> > Hum, why not just:
> > if ((vm_dirty_bytes == 0 && vm_dirty_ratio == 0) ||
> > (dirty_background_bytes == 0 && dirty_background_ratio == 0))
> > ret = false;
> >
> > IMHO setting either tunable to 0 is just wrong and actively dangerous...
> >
>
> Because these four variables all could be set to 0 before, and I'm not
> sure if this
> is needed under some certain conditions, although I think this is
> dangerous but I have
> to keep it as before.
>
> If you think that is wrong, then I will modified it as you suggested.
OK, I see but see below.
> >> int dirty_background_ratio_handler(struct ctl_table *table, int write,
> >> void __user *buffer, size_t *lenp,
> >> loff_t *ppos)
> >> {
> >> int ret;
> >> + int old_ratio = dirty_background_ratio;
> >>
> >> ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
> >> - if (ret == 0 && write)
> >> - dirty_background_bytes = 0;
> >> + if (ret == 0 && write) {
> >> + if (dirty_background_ratio != old_ratio &&
> >> + !vm_dirty_settings_valid()) {
> >
> > Why do you check whether new ratio is different here? If it is really
> > needed, it would deserve a comment.
> >
>
> There're two reseaons,
> 1. if you set a value same with the old value, it's needn't to do this check.
> 2. there's another behavior that I'm not sure whether it is reaonable. i.e.
> if the old value is,
> vm.dirty_background_bytes = 0;
> vm.dirty_background_ratio=10;
> then I execute the bellow command,
> sysctl -w vm.dirty_background_bytes=0
> at the end these two values will be,
> vm.dirty_background_bytes = 0;
> vm.dirty_background_ratio=0;
> I'm not sure if this is needed under some certain conditons, So I have
> to keep it as before.
OK, this is somewhat the problem of the switching logic between _bytes and
_ratio bytes and also the fact that '0' has a special meaning in these
files. I think the cleanest would be to just refuse writing of '0' into any
of these files which would deal with the problem as well.
Honza
--
Jan Kara <jack@suse.com>
SUSE Labs, CR
--
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>
next prev parent reply other threads:[~2017-09-20 15:33 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-18 22:53 Yafang Shao
2017-09-19 8:35 ` Jan Kara
2017-09-19 11:48 ` Yafang Shao
2017-09-20 15:33 ` Jan Kara [this message]
2017-09-21 1:42 ` Yafang Shao
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=20170920153326.GH11106@quack2.suse.cz \
--to=jack@suse.cz \
--cc=akpm@linux-foundation.org \
--cc=hannes@cmpxchg.org \
--cc=jlayton@redhat.com \
--cc=laoar.shao@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mawilcox@microsoft.com \
--cc=mhocko@suse.com \
--cc=nborisov@suse.com \
--cc=tytso@mit.edu \
--cc=vdavydov.dev@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