From: Mike Rapoport <rppt@kernel.org>
To: Pasha Tatashin <pasha.tatashin@soleen.com>
Cc: linux-kselftest@vger.kernel.org, shuah@kernel.org,
akpm@linux-foundation.org, linux-mm@kvack.org,
skhan@linuxfoundation.org, linux-doc@vger.kernel.org,
linux-kernel@vger.kernel.org, corbet@lwn.net,
dmatlack@google.com, kexec@lists.infradead.org,
pratyush@kernel.org, skhawaja@google.com, graf@amazon.com
Subject: Re: [PATCH v6 07/13] kho: add support for linked-block serialization
Date: Wed, 3 Jun 2026 16:59:43 +0300 [thread overview]
Message-ID: <aiAzT9TvGYjITiB8@kernel.org> (raw)
In-Reply-To: <aiANtYRRDr5iO5QR@plex>
On Wed, Jun 03, 2026 at 12:05:04PM +0000, Pasha Tatashin wrote:
> On 06-03 09:49, Mike Rapoport wrote:
> > On Wed, 03 Jun 2026 03:28:58 +0000, Pasha Tatashin <pasha.tatashin@soleen.com> wrote:
> > > diff --git a/include/linux/kho/abi/block.h b/include/linux/kho/abi/block.h
> > > new file mode 100644
> > > index 000000000000..8641c20b379b
> > > --- /dev/null
> > > +++ b/include/linux/kho/abi/block.h
> > > @@ -0,0 +1,56 @@
> > > [ ... skip 25 lines ... ]
> > > +#define _LINUX_KHO_ABI_BLOCK_H
> > > +
> > > +#include <asm/page.h>
> > > +#include <linux/types.h>
> > > +
> > > +#define KHO_BLOCK_ABI_COMPATIBLE "kho-block-v1"
> >
> > It's never used by block set and after looking at the following patches I
> > found that it's appended to LUO compatible string.
> >
> > While this works for LUO, I think it should be kho_block_set_restore()
> > responsibility to verify the compatibility.
>
> It should work for any component that relies on kho_block. My proposal
> is to use this method for other common KHO data structures (e.g., kho
> vmalloc, kho radix, future kho xarray). There is no need for them to
> carry the compatibility string in their metadata, as whoever uses them
> will include their compatibility string.
So if, say, memfd_luo uses kho vmalloc, xarray and blocks it'll have five
compatibility strings glued together?
> For now, reviewers will have to make sure that if the ABI header content
> is changed, the compatibility string is updated.
--
Sincerely yours,
Mike.
next prev parent reply other threads:[~2026-06-03 13:59 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-03 3:28 [PATCH v6 00/13] liveupdate: Remove limits on sessions and files Pasha Tatashin
2026-06-03 3:28 ` [PATCH v6 01/13] liveupdate: change file_set->count type to u64 for type safety Pasha Tatashin
2026-06-03 3:28 ` [PATCH v6 02/13] liveupdate: avoid mixing cleanup guards with goto in luo_session_retrieve_fd Pasha Tatashin
2026-06-03 6:52 ` Mike Rapoport
2026-06-03 3:28 ` [PATCH v6 03/13] liveupdate: centralize state management into struct luo_ser Pasha Tatashin
2026-06-03 6:52 ` Mike Rapoport
2026-06-03 3:28 ` [PATCH v6 04/13] liveupdate: register luo_ser as KHO subtree Pasha Tatashin
2026-06-03 6:50 ` Mike Rapoport
2026-06-03 9:32 ` Mike Rapoport
2026-06-03 13:31 ` Mike Rapoport
2026-06-03 3:28 ` [PATCH v6 05/13] liveupdate: Extract luo_file_deserialize_one helper Pasha Tatashin
2026-06-03 3:28 ` [PATCH v6 06/13] liveupdate: Extract luo_session_deserialize_one helper Pasha Tatashin
2026-06-03 3:28 ` [PATCH v6 07/13] kho: add support for linked-block serialization Pasha Tatashin
2026-06-03 6:49 ` Mike Rapoport
2026-06-03 12:05 ` Pasha Tatashin
2026-06-03 13:21 ` Pasha Tatashin
2026-06-03 13:59 ` Mike Rapoport [this message]
2026-06-03 14:11 ` Pasha Tatashin
2026-06-03 14:34 ` Mike Rapoport
2026-06-03 15:03 ` Pasha Tatashin
2026-06-03 15:18 ` Mike Rapoport
2026-06-03 3:28 ` [PATCH v6 08/13] liveupdate: defer session block allocation and physical address setting Pasha Tatashin
2026-06-03 3:29 ` [PATCH v6 09/13] liveupdate: Remove limit on the number of sessions Pasha Tatashin
2026-06-03 3:29 ` [PATCH v6 10/13] liveupdate: Remove limit on the number of files per session Pasha Tatashin
2026-06-03 3:29 ` [PATCH v6 11/13] selftests/liveupdate: Test session and file limit removal Pasha Tatashin
2026-06-03 3:29 ` [PATCH v6 12/13] selftests/liveupdate: Add stress-sessions kexec test Pasha Tatashin
2026-06-03 3:29 ` [PATCH v6 13/13] selftests/liveupdate: Add stress-files " Pasha Tatashin
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=aiAzT9TvGYjITiB8@kernel.org \
--to=rppt@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=corbet@lwn.net \
--cc=dmatlack@google.com \
--cc=graf@amazon.com \
--cc=kexec@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=pasha.tatashin@soleen.com \
--cc=pratyush@kernel.org \
--cc=shuah@kernel.org \
--cc=skhan@linuxfoundation.org \
--cc=skhawaja@google.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.