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://[email protected]/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.