rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2022-12-02 16:17:09 to 2023-01-10 21:54:50 UTC [more...]

[PATCH 1/7] rust: sync: add `Arc` for ref-counted allocations
 2023-01-10 21:54 UTC  (44+ messages)
` [PATCH 2/7] rust: sync: allow type of `self` to be `Arc<T>` or variants
` [PATCH 3/7] rust: sync: allow coercion from `Arc<T>` to `Arc<U>`
` [PATCH 4/7] rust: sync: introduce `ArcBorrow`
` [PATCH 5/7] rust: sync: allow type of `self` to be `ArcBorrow<T>`
` [PATCH 6/7] rust: sync: introduce `UniqueArc`
` [PATCH 7/7] rust: sync: add support for dispatching on Arc and ArcBorrow

[PATCH] rust: print: avoid evaluating arguments in `pr_*` macros in `unsafe` blocks
 2023-01-10 14:47 UTC  (3+ messages)

[PATCH 1/6] docs: rust: add paragraph about finding a suitable `libclang`
 2023-01-10 12:28 UTC  (13+ messages)
` [PATCH 2/6] kbuild: rust_is_available: print docs reference
` [PATCH 3/6] kbuild: rust_is_available: add check for `bindgen` invocation
` [PATCH 4/6] kbuild: rust_is_available: check if the script was invoked from Kbuild
` [PATCH 5/6] kbuild: rust_is_available: fix confusion when a version appears in the path
` [PATCH 6/6] kbuild: rust_is_available: normalize version matching

[PATCH v2] kbuild: rust: remove -v option of scripts/rust_is_available.sh
 2023-01-09 17:10 UTC  (2+ messages)

Fwd: [PATCH bpf] scripts: Exclude Rust CUs with pahole
 2023-01-09 15:39 UTC  (2+ messages)

[PATCH] kbuild: rust: remove -v option of scripts/rust_is_available.sh
 2023-01-08 21:56 UTC  (2+ messages)

[PATCH v2] scripts: Exclude Rust CUs with pahole
 2023-01-08 19:19 UTC  (4+ messages)

[PATCH v2 1/7] kbuild: refactor host*_flags
 2023-01-08 14:05 UTC  (10+ messages)
` [PATCH v2 2/7] kbuild: specify output names separately for each emission type from rustc
` [PATCH v2 3/7] fixdep: parse Makefile more correctly to handle comments etc
` [PATCH v2 4/7] kbuild: remove sed commands after rustc rules
` [PATCH v2 5/7] fixdep: refactor hash table lookup
` [PATCH v2 6/7] fixdep: avoid parsing the same file over again
` [PATCH v2 7/7] fixdep: do not parse *.rlib, *.rmeta, *.so

[PATCH v2] kbuild: rust: move rust/target.json to scripts/
 2023-01-08 13:59 UTC  (4+ messages)

Reminder: informal call in 45 minutes
 2023-01-07 17:16 UTC 

[PATCH] kbuild: rust: move rust/target.json to scripts/
 2023-01-07 14:45 UTC  (6+ messages)

Rust PROC FILESYSTEM abstractions
 2023-01-07 11:02 UTC  (4+ messages)

[PATCH 0/6] kbuild: fix dep-file processing for rust
 2023-01-07  9:09 UTC  (15+ messages)
` [PATCH 1/6] kbuild: specify output names separately for each emission type from rustc
` [PATCH 3/6] kbuild: remove sed commands after rustc rules
` [PATCH 5/6] fixdep: avoid parsing the same file over again

[bp:tip-x86-alternatives 1/1] error[E0588]: packed type cannot transitively contain a `#[repr(align)]` type
 2023-01-07  0:42 UTC  (8+ messages)

Rust in-kernel TLS handshake
 2023-01-06  9:57 UTC  (4+ messages)

[PATCH] scripts: avoid redundant re-reading makefiles
 2023-01-05 23:01 UTC  (4+ messages)

[PATCH] scripts: store Makefiles in dictionary
 2023-01-05 18:48 UTC  (4+ messages)

[PATCH bpf] scripts: Exclude Rust CUs with pahole
 2023-01-01  8:54 UTC  (3+ messages)

Rust Developer
 2022-12-26 14:40 UTC 

[PATCH] rust: prelude: prevent doc inline of external imports
 2022-12-21  9:33 UTC  (2+ messages)

[PATCH bpf] scripts: Exclude Rust CUs with pahole
 2022-12-20 20:39 UTC 

[PATCH 0/3] rust: arch/um: Rust support for UML
 2022-12-17 11:59 UTC  (5+ messages)
` [PATCH 1/3] rust: arch/um: Use 'pie' relocation mode under UML
` [PATCH 2/3] rust: arch/um: Disable FP/SIMD instruction to match x86
` [PATCH 3/3] rust: arch/um: Add support for CONFIG_RUST under x86_64 UML

[PATCH] rust: kernel: drop repetition in offset_of macro
 2022-12-16 23:57 UTC  (7+ messages)

[GIT PULL] Rust for 6.2
 2022-12-13 11:25 UTC  (4+ messages)

Napływ Klientów ze strony
 2022-12-12  9:10 UTC 

[PATCH v4] rust: compiler_builtins: make stubs non-global
 2022-12-07 12:38 UTC  (2+ messages)

[PATCH v1] rust: alloc: remove the `borrow` module (`ToOwned`, `Cow`)
 2022-12-07 10:08 UTC  (3+ messages)

[PATCH v2 00/28] Rust core additions
 2022-12-06 15:44 UTC  (38+ messages)
` [PATCH v2 05/28] rust: macros: add `concat_idents!` proc macro
` [PATCH v2 06/28] rust: macros: add `#[vtable]` "
` [PATCH v2 09/28] rust: error: add codes from `errno-base.h`
` [PATCH v2 12/28] rust: alloc: add `RawVec::try_with_capacity_in()` constructor
` [PATCH v2 13/28] rust: alloc: add `Vec::try_with_capacity{,_in}()` constructors
` [PATCH v2 14/28] rust: str: add `BStr` type
` [PATCH v2 15/28] rust: str: add `b_str!` macro
` [PATCH v2 16/28] rust: str: add `CStr` type
` [PATCH v2 17/28] rust: str: implement several traits for `CStr`
` [PATCH v2 18/28] rust: str: add `CStr` unit tests
` [PATCH v2 19/28] rust: str: add `c_str!` macro
` [PATCH v2 20/28] rust: str: add `Formatter` type
` [PATCH v2 21/28] rust: str: add `CString` type
` [PATCH v2 22/28] rust: str: add `fmt!` macro
` [PATCH v2 23/28] rust: std_vendor: add `dbg!` macro based on `std`'s one
` [PATCH v2 24/28] rust: static_assert: add `static_assert!` macro
` [PATCH v2 25/28] rust: add `build_error` crate
` [PATCH v2 26/28] rust: build_assert: add `build_{error,assert}!` macros
` [PATCH v2 27/28] rust: types: add `Either` type
` [PATCH v2 28/28] rust: types: add `Opaque` type

[PATCH v3] rust: compiler_builtins: make stubs non-global
 2022-12-05 21:44 UTC 

[PATCH v2] rust: make compiler-builtin stubs non-global
 2022-12-05 21:40 UTC  (4+ messages)

[PATCH] rust: make compiler-builtin stubs non-global
 2022-12-04 22:49 UTC 

Reminder: informal call in 10 minutes
 2022-12-03 17:52 UTC 


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).