linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
To: Wei Xu <weixugc@google.com>
Cc: "Huang, Ying" <ying.huang@intel.com>,
	Linux MM <linux-mm@kvack.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Yang Shi <shy828301@gmail.com>,
	Davidlohr Bueso <dave@stgolabs.net>,
	Tim C Chen <tim.c.chen@intel.com>,
	Michal Hocko <mhocko@kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Hesham Almatary <hesham.almatary@huawei.com>,
	Dave Hansen <dave.hansen@intel.com>,
	Jonathan Cameron <Jonathan.Cameron@huawei.com>,
	Alistair Popple <apopple@nvidia.com>,
	Dan Williams <dan.j.williams@intel.com>,
	Johannes Weiner <hannes@cmpxchg.org>,
	jvgediya.oss@gmail.com, Bharata B Rao <bharata@amd.com>
Subject: Re: [RFC PATCH 1/2] mm/demotion: Expose memory type details via sysfs
Date: Sun, 28 Aug 2022 21:50:22 +0530	[thread overview]
Message-ID: <87sflgqr09.fsf@linux.ibm.com> (raw)
In-Reply-To: <CAAPL-u_d_vozgSum7gX8Ecvh2ZY75KmB0+Z3d0yf7McqsfOU2Q@mail.gmail.com>

Wei Xu <weixugc@google.com> writes:

>
> On Fri, Aug 26, 2022 at 1:05 AM Aneesh Kumar K V
> <aneesh.kumar@linux.ibm.com> wrote:
>>
>> On 8/26/22 1:30 PM, Wei Xu wrote:
>> > On Thu, Aug 25, 2022 at 8:00 PM Aneesh Kumar K V
>> > <aneesh.kumar@linux.ibm.com> wrote:
>> >>
>> >> On 8/26/22 7:20 AM, Huang, Ying wrote:
>> >>> "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com> writes:
>> >>>
>> >>>> This patch adds /sys/devices/virtual/memtier/ where all memory tier related
>> >>>> details can be found. All allocated memory types will be listed there as
>> >>>> /sys/devices/virtual/memtier/memtypeN/
>> >>>
>> >>> Another choice is to make memory types and memory tiers system devices.
>> >>> That is,
>> >>>
>> >>> /sys/devices/system/memory_type/memory_typeN
>> >>> /sys/devices/system/memory_tier/memory_tierN
>> >>>
>> >>
>> >> subsys_system_register() documentation says
>> >>
>> >>  * Do not use this interface for anything new, it exists for compatibility
>> >>  * with bad ideas only. New subsystems should use plain subsystems; and
>> >>  * add the subsystem-wide attributes should be added to the subsystem
>> >>  * directory itself and not some create fake root-device placed in
>> >>  * /sys/devices/system/<name>.
>> >>
>> >> memtier being a virtual device, I was under the impression that /sys/devices/virtual
>> >> is the recommended place.
>> >>
>> >>> That looks more natural to me.  Because we already have "node" and
>> >>> "memory" devices there.  Why don't you put memory types and memory tiers
>> >>> there?
>> >>>
>> >>> And, I think we shouldn't put "memory_type" in the "memory_tier"
>> >>> directory.  "memory_type" isn't a part of "memory_tier".
>> >>>
>> >>
>> >> I was looking consolidating both memory tier and memory type into the same sysfs subsystem.
>> >> Your recommendation imply we create two subsystem memory_tier and memtype. I was
>> >> trying to avoid that. May be a generic term like "memory_tiering" can help to
>> >> consolidate all tiering related details there?
>> >>
>> >
>> > A generic term "memory_tiering" sounds good to me.
>> >
>> > Given that this will be a user-facing, stable kernel API, I think we'd
>> > better to only add what is most useful for userspace and don't have to
>> > mirror the kernel internal data structures in this interface.
>> >
>> > My understanding is that we haven't fully settled down on how to
>> > customize memory tiers from userspace.  So we don't have to show
>> > memory_type yet, which is a kernel data structure at this point.
>> >
>> > The userspace does need to know what are the memory tiers and which
>> > NUMA nodes are included in each memory tier.  How about we provide the
>> > "nodelist" interface for each memory tier as in the original proposal?
>> >
>> > The userspace would also like to know which memory tiers/nodes belong
>> > to the top tiers (the promotion targets).  We can provide a "toptiers"
>> > or "toptiers_nodelist" interface to report that.
>> >
>>
>> How about also including abstract distance range of a memory tier?
>> That will be useful to derive the hierarchy.
>
> With the base abstract distance in the memtier name, do we need to
> show the abstract distance range if we don't customize memory tiers?
>

IMHO it would simpler to let userspace find abstract distance by reading
a file rather than parsing a file name.

-aneesh

      reply	other threads:[~2022-08-28 16:21 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-25  9:23 [RFC PATCH 1/2] mm/demotion: Expose memory type details via sysfs Aneesh Kumar K.V
2022-08-25  9:23 ` [RFC PATCH 2/2] mm/demotion: Expose memory tier " Aneesh Kumar K.V
2022-08-26  4:31   ` Huang, Ying
2022-08-26  1:50 ` [RFC PATCH 1/2] mm/demotion: Expose memory type " Huang, Ying
2022-08-26  2:37   ` Aneesh Kumar K V
2022-08-26  8:00     ` Wei Xu
2022-08-26  8:05       ` Aneesh Kumar K V
2022-08-26  9:15         ` Wei Xu
2022-08-28 16:20           ` Aneesh Kumar K.V [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=87sflgqr09.fsf@linux.ibm.com \
    --to=aneesh.kumar@linux.ibm.com \
    --cc=Jonathan.Cameron@huawei.com \
    --cc=akpm@linux-foundation.org \
    --cc=apopple@nvidia.com \
    --cc=bharata@amd.com \
    --cc=dan.j.williams@intel.com \
    --cc=dave.hansen@intel.com \
    --cc=dave@stgolabs.net \
    --cc=hannes@cmpxchg.org \
    --cc=hesham.almatary@huawei.com \
    --cc=jvgediya.oss@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@kernel.org \
    --cc=shy828301@gmail.com \
    --cc=tim.c.chen@intel.com \
    --cc=weixugc@google.com \
    --cc=ying.huang@intel.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).