From: Andrew Morton <akpm@linux-foundation.org>
To: Dan Magenheimer <dan.magenheimer@oracle.com>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org,
jeremy@goop.org, hughd@google.com, ngupta@vflare.org,
Konrad Wilk <konrad.wilk@oracle.com>,
JBeulich@novell.com, Kurt Hackel <kurt.hackel@oracle.com>,
npiggin@kernel.dk, riel@redhat.com, hannes@cmpxchg.org,
matthew@wil.cx, Chris Mason <chris.mason@oracle.com>,
sjenning@linux.vnet.ibm.com, kamezawa.hiroyu@jp.fujitsu.com,
jackdachef@gmail.com, cyclonusj@gmail.com,
levinsasha928@gmail.com
Subject: Re: [PATCH V8 2/4] mm: frontswap: core code
Date: Thu, 8 Sep 2011 16:51:47 -0700 [thread overview]
Message-ID: <20110908165147.ff46f5bf.akpm@linux-foundation.org> (raw)
In-Reply-To: <896345e2-ded0-404a-8e64-490584ec2b4e@default>
On Thu, 8 Sep 2011 08:00:36 -0700 (PDT)
Dan Magenheimer <dan.magenheimer@oracle.com> wrote:
> > From: Andrew Morton [mailto:akpm@linux-foundation.org]
> > Subject: Re: [PATCH V8 2/4] mm: frontswap: core code
>
> Thanks very much for taking the time for this feedback!
>
> Please correct me if I am presumptuous or misreading
> SubmittingPatches, but after making the changes below,
> I am thinking this constitutes a "Reviewed-by"?
Not really. More like Briefly-browsed-by:.
> > > From: Dan Magenheimer <dan.magenheimer@oracle.com>
> > > Subject: [PATCH V8 2/4] mm: frontswap: core code
> > >
> > > This second patch of four in this frontswap series provides the core code
> > > for frontswap that interfaces between the hooks in the swap subsystem and
> > > +
> > > +struct frontswap_ops {
> > > + void (*init)(unsigned);
> > > + int (*put_page)(unsigned, pgoff_t, struct page *);
> > > + int (*get_page)(unsigned, pgoff_t, struct page *);
> > > + void (*flush_page)(unsigned, pgoff_t);
> > > + void (*flush_area)(unsigned);
> > > +};
> >
> > Please don't use the term "flush". In both the pagecache code and the
> > pte code it is interchangably used to refer to both writeback and
> > invalidation. The way to avoid this ambiguity and confusion is to use
> > the terms "writeback" and "invalidate" instead.
> >
> > Here, you're referring to invalidation.
>
> While the different name is OK, changing this consistently would now
> require simultaneous patches in cleancache, zcache, and xen (not
> to mention lots of docs inside and outside the kernel). I suspect
> it would be cleaner to do this later across all affected code
> with a single commit. Hope that's OK.
Well, if you can make that happen...
> (Personally, I find "invalidate" to be inaccurate because common
> usage of the term doesn't imply that the space used in the cache
> is recovered, i.e. garbage collection, which is the case here.
> To me, "flush" implies invalidate PLUS recover space.)
invalidate is close enough. Consider block/blk-flush.c, sigh.
>
> > > +/*
> > > + * Useful stats available in /sys/kernel/mm/frontswap. These are for
> > > + * information only so are not protected against increment/decrement races.
> > > + */
> > > +static unsigned long frontswap_gets;
> > > +static unsigned long frontswap_succ_puts;
> > > +static unsigned long frontswap_failed_puts;
> > > +static unsigned long frontswap_flushes;
> >
> > If they're in /sys/kernel/mm then they rather become permanent parts of
> > the exported kernel interface. We're stuck with them. Plus they're
> > inaccurate and updating them might be inefficient, so we don't want to
> > be stuck with them.
> >
> > I suggest moving these to debugfs from where we can remove them if we
> > feel like doing so.
>
> The style (and code) for this was mimicked from ksm and hugepages, which
> expose the stats the same way... as does cleancache now. slub is also
> similar. I'm OK with using a different approach (e.g. debugfs), but
> think it would be inconsistent and confusing to expose these stats
> differently than cleancache (or ksm and hugepages). I'd support
> and help with a massive cleanup commit across all of mm later though.
> Hope that's OK for now.
These are boring internal counters for a few developers. They're so
uninteresting to end users that the developer didn't even bother to
document them ;)
They should be in debugfs. Probably some/all of the existing
cleancache/ksm/hugepage stats should be in debugfs too. This a mistake
we often make. Please let's be extremely miserly with the kernel API.
WARNING: multiple messages have this Message-ID (diff)
From: Andrew Morton <akpm@linux-foundation.org>
To: Dan Magenheimer <dan.magenheimer@oracle.com>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org,
jeremy@goop.org, hughd@google.com, ngupta@vflare.org,
Konrad Wilk <konrad.wilk@oracle.com>,
JBeulich@novell.com, Kurt Hackel <kurt.hackel@oracle.com>,
npiggin@kernel.dk, riel@redhat.com, hannes@cmpxchg.org,
matthew@wil.cx, Chris Mason <chris.mason@oracle.com>,
sjenning@linux.vnet.ibm.com, kamezawa.hiroyu@jp.fujitsu.com,
jackdachef@gmail.com, cyclonusj@gmail.com,
levinsasha928@gmail.com
Subject: Re: [PATCH V8 2/4] mm: frontswap: core code
Date: Thu, 8 Sep 2011 16:51:47 -0700 [thread overview]
Message-ID: <20110908165147.ff46f5bf.akpm@linux-foundation.org> (raw)
In-Reply-To: <896345e2-ded0-404a-8e64-490584ec2b4e@default>
On Thu, 8 Sep 2011 08:00:36 -0700 (PDT)
Dan Magenheimer <dan.magenheimer@oracle.com> wrote:
> > From: Andrew Morton [mailto:akpm@linux-foundation.org]
> > Subject: Re: [PATCH V8 2/4] mm: frontswap: core code
>
> Thanks very much for taking the time for this feedback!
>
> Please correct me if I am presumptuous or misreading
> SubmittingPatches, but after making the changes below,
> I am thinking this constitutes a "Reviewed-by"?
Not really. More like Briefly-browsed-by:.
> > > From: Dan Magenheimer <dan.magenheimer@oracle.com>
> > > Subject: [PATCH V8 2/4] mm: frontswap: core code
> > >
> > > This second patch of four in this frontswap series provides the core code
> > > for frontswap that interfaces between the hooks in the swap subsystem and
> > > +
> > > +struct frontswap_ops {
> > > + void (*init)(unsigned);
> > > + int (*put_page)(unsigned, pgoff_t, struct page *);
> > > + int (*get_page)(unsigned, pgoff_t, struct page *);
> > > + void (*flush_page)(unsigned, pgoff_t);
> > > + void (*flush_area)(unsigned);
> > > +};
> >
> > Please don't use the term "flush". In both the pagecache code and the
> > pte code it is interchangably used to refer to both writeback and
> > invalidation. The way to avoid this ambiguity and confusion is to use
> > the terms "writeback" and "invalidate" instead.
> >
> > Here, you're referring to invalidation.
>
> While the different name is OK, changing this consistently would now
> require simultaneous patches in cleancache, zcache, and xen (not
> to mention lots of docs inside and outside the kernel). I suspect
> it would be cleaner to do this later across all affected code
> with a single commit. Hope that's OK.
Well, if you can make that happen...
> (Personally, I find "invalidate" to be inaccurate because common
> usage of the term doesn't imply that the space used in the cache
> is recovered, i.e. garbage collection, which is the case here.
> To me, "flush" implies invalidate PLUS recover space.)
invalidate is close enough. Consider block/blk-flush.c, sigh.
>
> > > +/*
> > > + * Useful stats available in /sys/kernel/mm/frontswap. These are for
> > > + * information only so are not protected against increment/decrement races.
> > > + */
> > > +static unsigned long frontswap_gets;
> > > +static unsigned long frontswap_succ_puts;
> > > +static unsigned long frontswap_failed_puts;
> > > +static unsigned long frontswap_flushes;
> >
> > If they're in /sys/kernel/mm then they rather become permanent parts of
> > the exported kernel interface. We're stuck with them. Plus they're
> > inaccurate and updating them might be inefficient, so we don't want to
> > be stuck with them.
> >
> > I suggest moving these to debugfs from where we can remove them if we
> > feel like doing so.
>
> The style (and code) for this was mimicked from ksm and hugepages, which
> expose the stats the same way... as does cleancache now. slub is also
> similar. I'm OK with using a different approach (e.g. debugfs), but
> think it would be inconsistent and confusing to expose these stats
> differently than cleancache (or ksm and hugepages). I'd support
> and help with a massive cleanup commit across all of mm later though.
> Hope that's OK for now.
These are boring internal counters for a few developers. They're so
uninteresting to end users that the developer didn't even bother to
document them ;)
They should be in debugfs. Probably some/all of the existing
cleancache/ksm/hugepage stats should be in debugfs too. This a mistake
we often make. Please let's be extremely miserly with the kernel API.
--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2011-09-08 23:52 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-29 16:49 [PATCH V8 2/4] mm: frontswap: core code Dan Magenheimer
2011-08-29 16:49 ` Dan Magenheimer
2011-09-07 23:25 ` Andrew Morton
2011-09-07 23:25 ` Andrew Morton
2011-09-08 15:00 ` Dan Magenheimer
2011-09-08 15:00 ` Dan Magenheimer
2011-09-08 23:51 ` Andrew Morton [this message]
2011-09-08 23:51 ` Andrew Morton
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=20110908165147.ff46f5bf.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=JBeulich@novell.com \
--cc=chris.mason@oracle.com \
--cc=cyclonusj@gmail.com \
--cc=dan.magenheimer@oracle.com \
--cc=hannes@cmpxchg.org \
--cc=hughd@google.com \
--cc=jackdachef@gmail.com \
--cc=jeremy@goop.org \
--cc=kamezawa.hiroyu@jp.fujitsu.com \
--cc=konrad.wilk@oracle.com \
--cc=kurt.hackel@oracle.com \
--cc=levinsasha928@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=matthew@wil.cx \
--cc=ngupta@vflare.org \
--cc=npiggin@kernel.dk \
--cc=riel@redhat.com \
--cc=sjenning@linux.vnet.ibm.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.