linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Shakeel Butt <shakeel.butt@linux.dev>
To: Vlastimil Babka <vbabka@suse.cz>
Cc: Alexei Starovoitov <alexei.starovoitov@gmail.com>,
	 Linus Torvalds <torvalds@linux-foundation.org>,
	bpf <bpf@vger.kernel.org>,
	 Daniel Borkmann <daniel@iogearbox.net>,
	Andrii Nakryiko <andrii@kernel.org>,
	 Martin KaFai Lau <martin.lau@kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	 Peter Zijlstra <peterz@infradead.org>,
	Sebastian Sewior <bigeasy@linutronix.de>,
	 Steven Rostedt <rostedt@goodmis.org>,
	Michal Hocko <mhocko@suse.com>, linux-mm <linux-mm@kvack.org>,
	 LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2] locking/local_lock, mm: Replace localtry_ helpers with local_trylock_t type
Date: Thu, 3 Apr 2025 14:53:17 -0700	[thread overview]
Message-ID: <dfcba7bacqwpwpdttj7y44ltyvdcclx7pibr4l3pwrfbmk6itl@pheighdusebk> (raw)
In-Reply-To: <78c2d3be-aa8e-4bb7-8883-7f144a06f866@suse.cz>

On Thu, Apr 03, 2025 at 11:26:35AM +0200, Vlastimil Babka wrote:
> On 4/2/25 23:40, Alexei Starovoitov wrote:
> > On Wed, Apr 2, 2025 at 1:56 PM Shakeel Butt <shakeel.butt@linux.dev> wrote:
> >>
> >> On Tue, Apr 01, 2025 at 01:52:45PM -0700, Alexei Starovoitov wrote:
> >> > From: Alexei Starovoitov <ast@kernel.org>
> >> >
> >> > Partially revert commit 0aaddfb06882 ("locking/local_lock: Introduce localtry_lock_t").
> >> > Remove localtry_*() helpers, since localtry_lock() name might
> >> > be misinterpreted as "try lock".
> >> >
> >> > Introduce local_trylock[_irqsave]() helpers that only work
> >> > with newly introduced local_trylock_t type.
> >> > Note that attempt to use local_trylock[_irqsave]() with local_lock_t
> >> > will cause compilation failure.
> >> >
> >> > Usage and behavior in !PREEMPT_RT:
> >> >
> >> > local_lock_t lock;                     // sizeof(lock) == 0
> >> > local_lock(&lock);                     // preempt disable
> >> > local_lock_irqsave(&lock, ...);        // irq save
> >> > if (local_trylock_irqsave(&lock, ...)) // compilation error
> >> >
> >> > local_trylock_t lock;                  // sizeof(lock) == 4
> >>
> >> Is there a reason for this 'acquired' to be int? Can it be uint8_t? No
> >> need to change anything here but I plan to change it later to compact as
> >> much as possible within one (or two) cachline for memcg stocks.
> > 
> > I don't see any issue. I can make it u8 right away.
> 
> Are you planning to put the lock near other <64bit sized values in memcg
> stock? Otherwise it will be padded anyway?
> 

Something like following:

struct memcg_stock_pcp {
	local_trylock_t stock_lock;
	uint8_t size;
	uint8_t nr_pages[NR_CACHED];
	struct mem_cgroup *cached[NR_CACHED];
...
}

and then experiment with different values of NR_CACHED which puts all
these fields in 1 or 2 cachelines.


      parent reply	other threads:[~2025-04-03 21:53 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-01 20:52 Alexei Starovoitov
2025-04-02 20:56 ` Shakeel Butt
2025-04-02 21:40   ` Alexei Starovoitov
2025-04-03  9:26     ` Vlastimil Babka
2025-04-03 14:45       ` Alexei Starovoitov
2025-04-03 21:53       ` Shakeel Butt [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=dfcba7bacqwpwpdttj7y44ltyvdcclx7pibr4l3pwrfbmk6itl@pheighdusebk \
    --to=shakeel.butt@linux.dev \
    --cc=akpm@linux-foundation.org \
    --cc=alexei.starovoitov@gmail.com \
    --cc=andrii@kernel.org \
    --cc=bigeasy@linutronix.de \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=martin.lau@kernel.org \
    --cc=mhocko@suse.com \
    --cc=peterz@infradead.org \
    --cc=rostedt@goodmis.org \
    --cc=torvalds@linux-foundation.org \
    --cc=vbabka@suse.cz \
    /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