Linux virtualization list
 help / color / mirror / Atom feed
From: Mauricio Faria de Oliveira <mfo@igalia.com>
To: "Uwe Kleine-König" <u.kleine-koenig@baylibre.com>
Cc: Kees Cook <kees@kernel.org>,
	Joel Granados <joel.granados@kernel.org>,
	Nathan Chancellor <nathan@kernel.org>,
	Nicolas Schier <nsc@kernel.org>,
	"David S. Miller" <davem@davemloft.net>,
	Eric Dumazet <edumazet@google.com>,
	Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
	Simon Horman <horms@kernel.org>,
	kernel-dev@igalia.com, linux-riscv@lists.infradead.org,
	linux-kernel@vger.kernel.org, fsverity@lists.linux.dev,
	keyrings@vger.kernel.org, bpf@vger.kernel.org,
	linux-fsdevel@vger.kernel.org, linux-kbuild@vger.kernel.org,
	netdev@vger.kernel.org, linux-wpan@vger.kernel.org,
	lvs-devel@vger.kernel.org, netfilter-devel@vger.kernel.org,
	coreteam@netfilter.org, linux-sctp@vger.kernel.org,
	linux-rdma@vger.kernel.org, linux-s390@vger.kernel.org,
	bridge@lists.linux.dev, mptcp@lists.linux.dev,
	rds-devel@oss.oracle.com, virtualization@lists.linux.dev
Subject: Re: [PATCH RFC v3 03/13] sysctl, mod_devicetable: add macro MODULE_SYSCTL_TABLE
Date: Mon, 24 Aug 2026 18:04:03 -0300	[thread overview]
Message-ID: <4aa22e41e8ff4bab6638cf0baaa9d07b@igalia.com> (raw)
In-Reply-To: <aotteDcc588iwC6g@monoceros>

On 2026-08-23 19:12, Uwe Kleine-König wrote:
> Hello Mauricio,
> 
> On Sat, Aug 22, 2026 at 01:57:24PM -0300, Mauricio Faria de Oliveira wrote:
>> On 2026-08-22 10:41, Uwe Kleine-König wrote:
>> > On Wed, Aug 19, 2026 at 03:16:16PM -0300, Mauricio Faria de Oliveira wrote:
>> >> The MODULE_SYSCTL_TABLE macro emits a struct module_sysctl_table variable
>> >> with pointers to a sysctl table's path and entries, and table/entry sizes.
>> > 
>> > That new struct doesn't seem to contain any pointer?
>> 
>> The struct module_sysctl_table fields .path and .table are pointers,
>> although with kernel_ulong_t type so that the same 32/64-bit size is
>> used in file2alias.c based on KERNEL_ELFCLASS (and not on the host,
>> which might differ with CROSS_COMPILE).
> 
> Cross compilation isn't an issue for the already existing device id
> structures; many of them also contain pointers.
> (While modpost doesn't use the pointers, the size of the structures must
> be known to correctly interpret the arrays.)

Indeed. I missed some device_id structures with pointers, and that
devicetable-offsets.c is cross-compiled to generate
devicetable-offsets.h for file2alias.c to use offsets and sizes of the
target architecture.

I'll change .path and .table to pointers in the next version.

> Also sizeof(long) differs between architectures and I can compile for
> arm(32) just fine on amd64.
> 
> Additionally there is hardware out there that has sizeof(void *) = 16
> but sizeof(long) = 8. Up until recently I worked on mainlining that (and
> it has business reasons only I stopped, so I guess and hope I will
> continue at some point in the future). See
> https://lwn.net/Articles/1037974/ for some details if you're interested.

Cool.

> 
> I would be great if your series didn't introduce a new obstacle for
> that.

Absolutely. I'll be happy to adjust the series and testing for that.

Could you please confirm one should just follow [1], which uses [2] to
build the LLVM toolchain, and use it to build the kernel [3]?

[1] https://github.com/cheri-linux#building-and-running
[2] https://github.com/cheri-linux/buildroot
[3] https://github.com/CHERI-Alliance/linux/tree/codasip-cheri-riscv-7.1

>> >> That symbol will be handled by file2alias.c (modpost) with the changes in
>> >> mod_devicetable.h and devicetable-offsets.c.
>> >> 
>> >> The option macros MODULE_SYSCTL_TABLE_{DISABLE,UNIQUE_ID} can be used on
>> >> a per-file basis to disable the macro and change the symbol name pattern.
>> >> 
>> >> Signed-off-by: Mauricio Faria de Oliveira <mfo@igalia.com>
>> >> ---
>> >>  include/linux/mod_devicetable.h   |  7 +++++++
>> >>  include/linux/sysctl.h            | 42 +++++++++++++++++++++++++++++++++++++++
>> >>  scripts/mod/devicetable-offsets.c |  6 ++++++
>> >>  3 files changed, 55 insertions(+)
>> > 
>> > Please put the new struct in a separate header. Apart from not being
>> > about a device table, I'm currently work on removing
>> > <linux/mod_devicetable.h>. See commit
>> > ad428f5811bd7fb3d91fa002174de533f9da94d7 for more details.
>> 
>> Sure; I looked at that earlier (thanks for the instructive commit
>> message, by the way) and found the new struct to be similar to "struct
>> cpu_feature isn't really a device_id struct" (not moved), but apparently
>> missed the trailing "fow now", which is clearer now. Fixed for v4.
> 
> Yeah, I didn't move that because it was an outlier in the header as it's
> not a device id. IMHO it should go to something like
> include/linux/cpu_feature.h.

Ack.

cheers,

> 
> Best regards
> Uwe

-- 
Mauricio

  reply	other threads:[~2026-08-24 21:04 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-19 18:16 [PATCH RFC v3 00/13] sysctl: add module aliases Mauricio Faria de Oliveira
2026-08-19 18:16 ` [PATCH RFC v3 01/13] keys, pidns, fs/verity, riscv/vector: reorder '#include <linux/sysctl.h>' Mauricio Faria de Oliveira
2026-08-19 18:16 ` [PATCH RFC v3 02/13] proc: add config option SYSCTL_MODULE_ALIASES Mauricio Faria de Oliveira
2026-08-19 18:16 ` [PATCH RFC v3 03/13] sysctl, mod_devicetable: add macro MODULE_SYSCTL_TABLE Mauricio Faria de Oliveira
2026-08-22 13:41   ` Uwe Kleine-König
2026-08-22 16:57     ` Mauricio Faria de Oliveira
2026-08-23 22:12       ` Uwe Kleine-König
2026-08-24 21:04         ` Mauricio Faria de Oliveira [this message]
2026-08-19 18:16 ` [PATCH RFC v3 04/13] sysctl: add register_sysctl() wrapper for MODULE_SYSCTL_TABLE Mauricio Faria de Oliveira
2026-08-19 18:16 ` [PATCH RFC v3 05/13] sysctl, parport: update register_sysctl() callers with template arguments Mauricio Faria de Oliveira
2026-08-19 18:16 ` [PATCH RFC v3 06/13] sysctl, net: add register_net_sysctl{_sz}() wrappers for MODULE_SYSCTL_TABLE Mauricio Faria de Oliveira
2026-08-19 18:16 ` [PATCH RFC v3 07/13] sysctl, net: update register_net_sysctl{_sz}() callers with template arguments Mauricio Faria de Oliveira
2026-08-19 18:16 ` [PATCH RFC v3 08/13] sysctl, net: update register_net_sysctl_sz(ARRAY_SIZE(table_tmpl)) " Mauricio Faria de Oliveira
2026-08-19 18:16 ` [PATCH RFC v3 09/13] sysctl, ipv6: update register_net_sysctl{_sz}() callers " Mauricio Faria de Oliveira
2026-08-19 18:16 ` [PATCH RFC v3 10/13] sysctl, net: update register_net_sysctl_sz() edge case Mauricio Faria de Oliveira
2026-08-19 18:16 ` [PATCH RFC v3 11/13] sysctl: unrandomize struct ctl_table.procname Mauricio Faria de Oliveira
2026-08-19 18:16 ` [PATCH RFC v3 12/13] modpost: move addend_*_rel() calls into addend_rel() Mauricio Faria de Oliveira
2026-08-19 18:16 ` [PATCH RFC v3 13/13] modpost: handle MODULE_SYSCTL_TABLE symbols Mauricio Faria de Oliveira
2026-08-20 12:51 ` [PATCH RFC v3 00/13] sysctl: add module aliases Joel Granados
2026-08-20 21:22   ` Mauricio Faria de Oliveira

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=4aa22e41e8ff4bab6638cf0baaa9d07b@igalia.com \
    --to=mfo@igalia.com \
    --cc=bpf@vger.kernel.org \
    --cc=bridge@lists.linux.dev \
    --cc=coreteam@netfilter.org \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=fsverity@lists.linux.dev \
    --cc=horms@kernel.org \
    --cc=joel.granados@kernel.org \
    --cc=kees@kernel.org \
    --cc=kernel-dev@igalia.com \
    --cc=keyrings@vger.kernel.org \
    --cc=kuba@kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kbuild@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rdma@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=linux-s390@vger.kernel.org \
    --cc=linux-sctp@vger.kernel.org \
    --cc=linux-wpan@vger.kernel.org \
    --cc=lvs-devel@vger.kernel.org \
    --cc=mptcp@lists.linux.dev \
    --cc=nathan@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=netfilter-devel@vger.kernel.org \
    --cc=nsc@kernel.org \
    --cc=pabeni@redhat.com \
    --cc=rds-devel@oss.oracle.com \
    --cc=u.kleine-koenig@baylibre.com \
    --cc=virtualization@lists.linux.dev \
    /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