[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <7dc0f103-ab0b-40db-b246-a1af40afe4d3@kernel.org>
Date: Thu, 4 Dec 2025 12:52:04 +0100
From: Daniel Gomez <da.gomez@...nel.org>
To: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: Luis Chamberlain <mcgrof@...nel.org>, Petr Pavlu <petr.pavlu@...e.com>,
Sami Tolvanen <samitolvanen@...gle.com>, Daniel Gomez
<da.gomez@...sung.com>, Mauro Carvalho Chehab <mchehab@...nel.org>,
Hans Verkuil <hverkuil@...nel.org>, Andreas Hindborg
<a.hindborg@...nel.org>, Uwe Kleine-König
<u.kleine-koenig@...gutronix.de>, Aaron Tomlin <atomlin@...mlin.com>,
Kees Cook <kees@...nel.org>, linux-modules@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [GIT PULL] Modules changes for v6.19-rc1
On 04/12/2025 00.48, Daniel Gomez wrote:
> The following changes since commit dcb6fa37fd7bc9c3d2b066329b0d27dedf8becaa:
>
> Linux 6.18-rc3 (2025-10-26 15:59:49 -0700)
>
> are available in the Git repository at:
>
> ssh://git@...olite.kernel.org/pub/scm/linux/kernel/git/modules/linux.git/ tags/modules-6.19-rc1
I know the preference is to use git:// but my git config resolved to the above
link. Here what I intended to do:
git://git.kernel.org/pub/scm/linux/kernel/git/modules/linux.git tags/modules-6.19-rc1
> The changes have been in linux-next for 4 weeks. Recent 0day reports for UM [3]
> and arm64 [4] builds were not reproducible and traced to a buggy bindgen version
> combined with unreleased clang-22 in 0day. The Rust team has reported this to
> 0day.
FYI, this has been confirmed by 0day:
https://lore.kernel.org/all/aTEi3KUUkPVGS3ix@xsang-OptiPlex-9020/
> @@@ -329,25 -179,30 +332,30 @@@ pub(crate) fn module(ts: TokenStream) -
> // Rust does not allow hyphens in identifiers, use underscore instead.
> let ident = info.name.replace('-', "_");
> let mut modinfo = ModInfoBuilder::new(ident.as_ref());
> - if let Some(authors) = info.authors {
> + if let Some(authors) = &info.authors {
> for author in authors {
> - modinfo.emit("author", &author);
> + modinfo.emit("author", author);
> }
> }
> - if let Some(description) = info.description {
> - modinfo.emit("description", &description);
> + if let Some(description) = &info.description {
> + modinfo.emit("description", description);
> }
> modinfo.emit("license", &info.license);
> - if let Some(aliases) = info.alias {
> + if let Some(aliases) = &info.alias {
> for alias in aliases {
> - modinfo.emit("alias", &alias);
> + modinfo.emit("alias", alias);
> }
> }
> - if let Some(firmware) = info.firmware {
> + if let Some(firmware) = &info.firmware {
> for fw in firmware {
> - modinfo.emit("firmware", &fw);
> + modinfo.emit("firmware", fw);
> }
> }
> - if let Some(imports) = info.imports_ns {
> ++ if let Some(imports) = &info.imports_ns {
> + for ns in imports {
> - modinfo.emit("import_ns", &ns);
> ++ modinfo.emit("import_ns", ns);
> + }
> + }
This last part is the only non-trivial for this conflict.
Powered by blists - more mailing lists