public inbox for linux-kbuild@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2026-04-01 11:47:38 to 2026-04-05 23:59:36 UTC [more...]

[PATCH v2 00/33] rust: bump minimum Rust and `bindgen` versions
 2026-04-05 23:53 UTC  (34+ messages)
` [PATCH v2 01/33] rust: kbuild: remove `--remap-path-prefix` workarounds
` [PATCH v2 02/33] rust: kbuild: remove "`try` keyword" workaround for `bindgen` < 0.59.2
` [PATCH v2 03/33] rust: kbuild: remove unneeded old `allow`s for generated layout tests
` [PATCH v2 04/33] gpu: nova-core: bindings: remove unneeded `cfg_attr`
` [PATCH v2 05/33] rust: bump Rust minimum supported version to 1.85.0 (Debian Trixie)
` [PATCH v2 06/33] rust: bump Clippy's MSRV and clean `incompatible_msrv` allows
` [PATCH v2 07/33] rust: allow globally `clippy::incompatible_msrv`
` [PATCH v2 08/33] rust: simplify `RUSTC_VERSION` Kconfig conditions
` [PATCH v2 09/33] rust: remove `RUSTC_HAS_SLICE_AS_FLATTENED` and simplify code
` [PATCH v2 10/33] rust: remove `RUSTC_HAS_COERCE_POINTEE` "
` [PATCH v2 11/33] rust: kbuild: remove skipping of `-Wrustdoc::unescaped_backticks`
` [PATCH v2 12/33] rust: kbuild: remove `feature(...)`s that are now stable
` [PATCH v2 13/33] rust: transmute: simplify code with Rust 1.80.0 `split_at_*checked()`
` [PATCH v2 14/33] rust: alloc: simplify with `NonNull::add()` now that it is stable
` [PATCH v2 15/33] rust: macros: simplify code using `feature(extract_if)`
` [PATCH v2 16/33] rust: block: update `const_refs_to_static` MSRV TODO comment
` [PATCH v2 17/33] rust: bump `bindgen` minimum supported version to 0.71.1 (Debian Trixie)
` [PATCH v2 18/33] rust: rust_is_available: remove warning for `bindgen` 0.66.[01]
` [PATCH v2 19/33] rust: rust_is_available: remove warning for `bindgen` < 0.69.5 && libclang >= 19.1
` [PATCH v2 20/33] rust: kbuild: update `bindgen --rust-target` version and replace comment
` [PATCH v2 21/33] rust: kbuild: remove "dummy parameter" workaround for `bindgen` < 0.71.1
` [PATCH v2 22/33] docs: rust: quick-start: openSUSE provides `rust-src` package nowadays
` [PATCH v2 23/33] docs: rust: quick-start: update Ubuntu versioned packages
` [PATCH v2 24/33] docs: rust: quick-start: update minimum Ubuntu version
` [PATCH v2 25/33] docs: rust: quick-start: add Ubuntu 26.04 LTS and remove subsection title
` [PATCH v2 26/33] docs: rust: quick-start: remove Gentoo "testing" note
` [PATCH v2 27/33] docs: rust: quick-start: remove Nix "unstable channel" note
` [PATCH v2 28/33] docs: rust: quick-start: remove GDB/Binutils mention
` [PATCH v2 29/33] docs: rust: general-information: simplify Kconfig example
` [PATCH v2 30/33] docs: rust: general-information: use real example
` [PATCH v2 31/33] rust: declare cfi_encoding for lru_status
` [PATCH v2 32/33] rust: kbuild: support global per-version flags
` [PATCH v2 33/33] rust: kbuild: allow `clippy::precedence` for Rust < 1.86.0

[PATCH 00/33] rust: bump minimum Rust and `bindgen` versions
 2026-04-05 23:15 UTC  (114+ messages)
` [PATCH 01/33] rust: bump Rust minimum supported version to 1.85.0 (Debian Trixie)
` [PATCH 02/33] rust: bump Clippy's MSRV and clean `incompatible_msrv` allows
` [PATCH 03/33] rust: simplify `RUSTC_VERSION` Kconfig conditions
` [PATCH 04/33] rust: remove `RUSTC_HAS_SLICE_AS_FLATTENED` and simplify code
` [PATCH 05/33] rust: remove `RUSTC_HAS_COERCE_POINTEE` "
` [PATCH 06/33] rust: kbuild: remove skipping of `-Wrustdoc::unescaped_backticks`
` [PATCH 07/33] rust: kbuild: remove `feature(...)`s that are now stable
` [PATCH 08/33] rust: kbuild: simplify `--remap-path-prefix` workaround
` [PATCH 09/33] rust: kbuild: make `--remap-path-prefix` workaround conditional
` [PATCH 10/33] rust: transmute: simplify code with Rust 1.80.0 `split_at_*checked()`
` [PATCH 11/33] rust: alloc: simplify with `NonNull::add()` now that it is stable
` [PATCH 12/33] rust: macros: update `extract_if` MSRV TODO comment
` [PATCH 13/33] rust: block: update `const_refs_to_static` "
` [PATCH 14/33] rust: bump `bindgen` minimum supported version to 0.71.1 (Debian Trixie)
` [PATCH 15/33] rust: rust_is_available: remove warning for 0.66.[01] buggy versions
` [PATCH 16/33] rust: rust_is_available: remove warning for < 0.69.5 && libclang >= 19.1
` [PATCH 17/33] rust: kbuild: update `bindgen --rust-target` version and replace comment
` [PATCH 18/33] rust: kbuild: remove "dummy parameter" workaround for `bindgen` < 0.71.1
` [PATCH 19/33] rust: kbuild: remove "`try` keyword" workaround for `bindgen` < 0.59.2
` [PATCH 20/33] rust: kbuild: remove unneeded old `allow`s for generated layout tests
` [PATCH 21/33] gpu: nova-core: bindings: remove unneeded `cfg_attr`
` [PATCH 22/33] docs: rust: quick-start: openSUSE provides `rust-src` package nowadays
` [PATCH 23/33] docs: rust: quick-start: update Ubuntu versioned packages
` [PATCH 24/33] docs: rust: quick-start: update minimum Ubuntu version
` [PATCH 25/33] docs: rust: quick-start: add Ubuntu 26.04 LTS and remove subsection title
` [PATCH 26/33] docs: rust: quick-start: remove Gentoo "testing" note
` [PATCH 27/33] docs: rust: quick-start: remove Nix "unstable channel" note
` [PATCH 28/33] docs: rust: quick-start: remove GDB/Binutils mention
` [PATCH 29/33] docs: rust: general-information: simplify Kconfig example
` [PATCH 30/33] docs: rust: general-information: use real example
` [PATCH 31/33] rust: declare cfi_encoding for lru_status
` [PATCH 32/33] rust: kbuild: support global per-version flags
` [PATCH 33/33] rust: kbuild: allow `clippy::precedence` for Rust < 1.86.0

[PATCH] checksyscalls: fail on all intermediate errors
 2026-04-05  7:22 UTC  (2+ messages)

[PATCH 1/2] kbuild: rust: allow `clippy::uninlined_format_args`
 2026-04-03 21:23 UTC  (13+ messages)
` [PATCH 2/2] rust: macros: simplify `format!` arguments

[PATCH] kconfig: forbid multiple entries with the same symbol in a choice
 2026-04-03 19:15 UTC  (2+ messages)

[PATCH v1] slab: support for compiler-assisted type-based slab cache partitioning
 2026-04-03 18:29 UTC  (8+ messages)

[PATCH v4 0/2] Change Rust Binder crate name to rust_binder
 2026-04-03 10:05 UTC  (10+ messages)
` [PATCH v4 1/2] rust: support overriding crate_name
` [PATCH v4 2/2] rust_binder: override crate name to rust_binder

[PATCH v2] kbuild: rust: add AutoFDO support
 2026-04-03  5:02 UTC  (2+ messages)

[PATCH 0/9] configs: cleanup obsolete or incorrect assignments
 2026-04-02 21:52 UTC  (5+ messages)
` [PATCH 2/9] configs: remove orphan dependencies of NETFILTER_XTABLES_LEGACY
` [PATCH 3/9] configs: remove obsolete assignments to CONFIG_NFS_V4_1

[PATCH v4 00/15] add SPDX SBOM generation script
 2026-04-02 20:57 UTC  (9+ messages)
` [PATCH 02/15] scripts/sbom: integrate script in make process

[PATCH v2 0/4] kbuild: vdso_install: drop build ID architecture allow-list
 2026-04-02 20:21 UTC  (2+ messages)

[PATCH v3 0/3] checksyscalls: only run when necessary
 2026-04-02 20:20 UTC  (5+ messages)
` [PATCH v3 1/3] checksyscalls: move path to reference table to a variable
` [PATCH v3 2/3] checksyscalls: only run when necessary
` [PATCH v3 3/3] checksyscalls: move instance functionality into generic code

[PATCH] Documentation: kbuild: Update the debug information notes in reproducible-builds.rst
 2026-04-02 20:19 UTC  (2+ messages)

[PATCH v3] char: nvram: Remove unused nvram_mutex to fix -Wunused-variable warning
 2026-04-02 20:04 UTC  (2+ messages)

[PATCH v4] char/nvram: Remove redundant nvram_mutex
 2026-04-02 16:03 UTC  (2+ messages)

[PATCH] kbuild: builddeb - avoid recompiles for non-cross-compiles
 2026-04-02 14:51 UTC 

[PATCH v2 0/3] checksyscalls: only run when necessary
 2026-04-02 14:18 UTC  (5+ messages)
` [PATCH v2 3/3] checksyscalls: move instance functionality into generic code

[PATCH] kbuild/btf: Avoid relinking modules when only vmlinux changes
 2026-04-02 14:17 UTC 

[PATCH 0/1] gcov: add -fprofile-update=atomic to fix concurrent access crashes
 2026-04-02 14:18 UTC  (2+ messages)
` [PATCH] gcov: use atomic counter updates "

[PATCH v3 0/2] Change Rust Binder crate name to rust_binder
 2026-04-02 10:30 UTC  (2+ messages)

[PATCH 0/5] Introduce Overflow Behavior Types
 2026-04-02  9:13 UTC  (27+ messages)
` [PATCH 3/5] compiler_attributes: Add overflow_behavior macros __ob_trap and __ob_wrap
` [PATCH 5/5] types: Add standard __ob_trap and __ob_wrap scalar types

[PATCH] modpost: Declare extra_warn with unused attribute
 2026-04-01 23:04 UTC  (4+ messages)
` (subset) "


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox