Linux-mm Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Lorenzo Stoakes (ARM)" <ljs@kernel.org>
To: Mike Rapoport <rppt@kernel.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	 David Hildenbrand <david@kernel.org>,
	"Liam R. Howlett" <liam@infradead.org>,
	 Vlastimil Babka <vbabka@kernel.org>,
	Suren Baghdasaryan <surenb@google.com>,
	 Michal Hocko <mhocko@suse.com>,
	Alexei Starovoitov <ast@kernel.org>,
	 Daniel Borkmann <daniel@iogearbox.net>,
	"David S. Miller" <davem@davemloft.net>,
	 Jakub Kicinski <kuba@kernel.org>,
	Jesper Dangaard Brouer <hawk@kernel.org>,
	 John Fastabend <john.fastabend@gmail.com>,
	Stanislav Fomichev <sdf@fomichev.me>,
	 James Bottomley <James.Bottomley@hansenpartnership.com>,
	Hagen Paul Pfeifer <hagen@jauu.net>,
	 Pedro Falcato <pfalcato@suse.de>,
	linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	 linux-kselftest@vger.kernel.org, netdev@vger.kernel.org,
	bpf@vger.kernel.org,  Daehyeon Ko <4ncienth@gmail.com>,
	stable@vger.kernel.org
Subject: Re: [PATCH] mm/secretmem: properly account locked pages
Date: Sat, 22 Aug 2026 19:55:28 +0100	[thread overview]
Message-ID: <aonwNh4vsmyp5o1K@lucifer> (raw)
In-Reply-To: <aoRx-VLojNCSBPUj@lucifer>

On Tue, Aug 18, 2026 at 04:27:48PM +0100, Lorenzo Stoakes (ARM) wrote:
> On Tue, Aug 18, 2026 at 05:47:55PM +0300, Mike Rapoport wrote:
> > > diff --git a/tools/testing/selftests/mm/memfd_secret.c b/tools/testing/selftests/mm/memfd_secret.c
> > > index aac4f795c327..626e7033b72f 100644
> > > --- a/tools/testing/selftests/mm/memfd_secret.c
> > > +++ b/tools/testing/selftests/mm/memfd_secret.c
...
> > > +static void test_mlock_limit(void)
> > >  {
> > >  	size_t len;
> > >  	char *mem;
> > > +	int fd;
> > > +
> > > +	/* Locked pages have an inode lifetime, so need a new fd. */
> > > +	fd = memfd_secret(0);
> > > +	if (fd < 0) {
> > > +		fail("memfd_secret failed: %s\n", strerror(errno));
> > > +		return;
> > > +	}
> > > +
> > > +	if (ftruncate(fd, mlock_limit_max * 2)) {
> > > +		fail("ftruncate failed: %s\n", strerror(errno));
> > > +		goto out_close;
> > > +	}
> >
> > Can't we ftruncate to this size in main and be done?
>
> I think we should be able to, will change unless it's somehow a problem.

OK no, I have to do it here as there needs to be a new fd since keeping the same
fd would mean all future tests would have secretmem that exceeded the rlimit
quota (since it's per inode now), so have to set up new fd, configure it, tear
it down just for this test :)

--
Cheers, Lorenzo


      reply	other threads:[~2026-08-22 18:55 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-14 18:46 [PATCH] mm/secretmem: properly account locked pages Lorenzo Stoakes (ARM)
2026-08-18  5:20 ` Daehyeon Ko
2026-08-18  7:00   ` Lorenzo Stoakes (ARM)
2026-08-18  7:16 ` Lorenzo Stoakes (ARM)
2026-08-18 14:47 ` Mike Rapoport
2026-08-18 15:27   ` Lorenzo Stoakes (ARM)
2026-08-22 18:55     ` Lorenzo Stoakes (ARM) [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=aonwNh4vsmyp5o1K@lucifer \
    --to=ljs@kernel.org \
    --cc=4ncienth@gmail.com \
    --cc=James.Bottomley@hansenpartnership.com \
    --cc=akpm@linux-foundation.org \
    --cc=ast@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=davem@davemloft.net \
    --cc=david@kernel.org \
    --cc=hagen@jauu.net \
    --cc=hawk@kernel.org \
    --cc=john.fastabend@gmail.com \
    --cc=kuba@kernel.org \
    --cc=liam@infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@suse.com \
    --cc=netdev@vger.kernel.org \
    --cc=pfalcato@suse.de \
    --cc=rppt@kernel.org \
    --cc=sdf@fomichev.me \
    --cc=stable@vger.kernel.org \
    --cc=surenb@google.com \
    --cc=vbabka@kernel.org \
    /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